diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2011-09-07 18:41:05 -0400 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2011-09-07 18:41:05 -0400 |
commit | 8b13206e655cd9c1123d842cab1fdd0afd6edc8b (patch) | |
tree | 7bc160ae231726989f023ccc6a5fe84d685e4c42 /cores/arduino/Server.h | |
parent | 3c66dc1b8d1de4b93fce7f447901559591976a26 (diff) |
Making Print::write(char *) non-virtual.
http://code.google.com/p/arduino/issues/detail?id=607
Diffstat (limited to 'cores/arduino/Server.h')
-rw-r--r-- | cores/arduino/Server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Server.h b/cores/arduino/Server.h index edab726..9674c76 100644 --- a/cores/arduino/Server.h +++ b/cores/arduino/Server.h @@ -1,7 +1,7 @@ #ifndef server_h #define server_h -class Server { +class Server : public Print { public: virtual void begin() =0; }; |