1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

change toCharArray() to toString()

This commit is contained in:
Martin Ayotte
2015-08-21 11:07:26 -04:00
parent 664d92fbd0
commit b28e879af6
2 changed files with 6 additions and 12 deletions

View File

@ -21,6 +21,7 @@
#define IPAddress_h
#include <stdint.h>
#include <WString.h>
#include <Printable.h>
// A class to make it easier to handle and pass around IP addresses
@ -70,7 +71,7 @@ class IPAddress: public Printable {
IPAddress& operator=(uint32_t address);
virtual size_t printTo(Print& p) const;
char * toCharArray();
String toString();
friend class EthernetClass;
friend class UDP;