Skip to content

Commit bd04113

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 79cb1d3 commit bd04113

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

avr/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)