8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27bb766 commit 32d3aeeCopy full SHA for 32d3aee
api/Print.h
@@ -82,5 +82,7 @@ class Print
82
size_t println(double, int = 2);
83
size_t println(const Printable&);
84
size_t println(void);
85
+
86
+ virtual void flush() { /* Empty implementation for backward compatibility */ }
87
};
88
api/Stream.h
@@ -58,7 +58,6 @@ class Stream : public Print
58
virtual int available() = 0;
59
virtual int read() = 0;
60
virtual int peek() = 0;
61
- virtual void flush() = 0;
62
63
Stream() {_timeout=1000;}
64
0 commit comments