Skip to content

Commit 5480ba6

Browse files
committed
Fix for issue #3 AVR needs stdint.h header.
1 parent 88341ff commit 5480ba6

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ArduinoSTL
2-
version=0.1.7
2+
version=0.1.8
33
author=Mike Matera <matera@lifealgorithmic.com>
44
maintainer=Mike Matera <matera@lifealgorithmic.com>
55
sentence=A port of uClibc++ packaged as an Arduino library.

src/ostream_helpers

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1818
*/
1919

20+
#include <stdint.h>
2021
#include <basic_definitions>
2122
#include <cstddef>
2223
#include <ios>

src/ostream_helpers.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,8 @@
66
*
77
*/
88

9-
#include <stdint.h>
10-
#include <basic_definitions>
11-
#include <cstddef>
12-
#include <ios>
13-
#include <cctype>
9+
#include <ostream_helpers>
1410
#include <stdio.h>
15-
#include <math.h>
1611

1712
namespace std {
1813

0 commit comments

Comments
 (0)