diff options
author | Cristian Maglie <c.maglie@arduino.cc> | 2015-09-24 15:50:43 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-09-24 15:52:32 +0200 |
commit | aba020da75d6301060bcb4293270e4dda5cb5343 (patch) | |
tree | c364bf38c94c600126c158df0ffbe15bf816e980 /cores/arduino/IPAddress.h | |
parent | f36a7f6e4859ec83e666964523f88fa8d49cff1d (diff) |
Fixed another regression in IPAddress.h
If the includer tries to inlcude IPAddress.h without first including
WString.h the build will fail.
Diffstat (limited to 'cores/arduino/IPAddress.h')
-rw-r--r-- | cores/arduino/IPAddress.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cores/arduino/IPAddress.h b/cores/arduino/IPAddress.h index b20ab58..d762f2c 100644 --- a/cores/arduino/IPAddress.h +++ b/cores/arduino/IPAddress.h @@ -21,7 +21,8 @@ #define IPAddress_h #include <stdint.h> -#include <Printable.h> +#include "Printable.h" +#include "WString.h" // A class to make it easier to handle and pass around IP addresses |