Skip to content

Commit a72cc4c

Browse files
SIL fix.
1 parent 3b22c54 commit a72cc4c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Arduino.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ class Stream {
9191
void print(const char *c) { stream << c; };
9292
void print(const std::string& string) { stream << string; };
9393
void print(int x) { stream << x; };
94+
void print(uint32_t x) { stream << x; };
9495
void print(int x, std::ios_base& manipulator(std::ios_base&)) { stream << manipulator << x; };
9596
void println() { stream << std::endl; };
9697
void println(const std::string& string) { stream << string << std::endl; };

0 commit comments

Comments
 (0)