Skip to content

Commit f02de75

Browse files
committed
Fixed another regression in IPAddress.h
If the includer tries to inlcude IPAddress.h without first including WString.h the build will fail.
1 parent e9b33e6 commit f02de75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cores/arduino/IPAddress.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
#define IPAddress_h
2222

2323
#include <stdint.h>
24-
#include <Printable.h>
24+
#include "Printable.h"
25+
#include "WString.h"
2526

2627
// A class to make it easier to handle and pass around IP addresses
2728

0 commit comments

Comments
 (0)