1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Making Print::write(char *) non-virtual on WiFi lib

This commit is contained in:
mlafauci
2011-09-13 21:48:09 +02:00
parent 00b945d869
commit 20bea5fcc0
4 changed files with 0 additions and 18 deletions

View File

@ -51,11 +51,6 @@ void WiFiServer::write(uint8_t b)
write(&b, 1);
}
void WiFiServer::write(const char *str)
{
write((const uint8_t *)str, strlen(str));
}
void WiFiServer::write(const uint8_t *buffer, size_t size)
{
for (int sock = 0; sock < MAX_SOCK_NUM; sock++)