1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-17 06:52:18 +01:00

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 fc8f84f06b
commit 563a7306b9
2 changed files with 4 additions and 2 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

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