Buffer needs flush() method

feature/UrlUtils
Kenneth Barbour 2018-11-24 18:46:53 -05:00
parent 2ba1acc650
commit 1f2ecdd365
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ class Buffer: public Stream, public Printable
int peek();
int read();
void clear();
void flush() { clear(); };
using Print::write;
size_t printTo(Print& stream) const;