From aba020da75d6301060bcb4293270e4dda5cb5343 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 24 Sep 2015 15:50:43 +0200 Subject: Fixed another regression in IPAddress.h If the includer tries to inlcude IPAddress.h without first including WString.h the build will fail. --- cores/arduino/IPAddress.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cores/arduino/IPAddress.h') 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 -#include +#include "Printable.h" +#include "WString.h" // A class to make it easier to handle and pass around IP addresses -- cgit v1.2.3-18-g5258