1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-07 00:04:36 +03:00

Making Print::write(char *) non-virtual.

http://code.google.com/p/arduino/issues/detail?id=607
This commit is contained in:
David A. Mellis
2011-09-07 18:41:05 -04:00
parent 3cbbb17e9f
commit 7d8d20894c
17 changed files with 15 additions and 48 deletions

View File

@@ -93,6 +93,8 @@ public:
virtual int read();
virtual int available();
virtual void flush();
using Print::write;
// public only for easy access by interrupt handlers
static inline void handle_interrupt();