Fixed another regression in IPAddress.h

If the includer tries to inlcude IPAddress.h without first including
WString.h the build will fail.
This commit is contained in:
Cristian Maglie 2015-09-24 15:50:43 +02:00
parent f36a7f6e48
commit aba020da75
1 changed files with 2 additions and 1 deletions

View File

@ -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