We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
IPAddress.h
Client.h
Arduino.h
1 parent becf990 commit bc6bab8Copy full SHA for bc6bab8
CHANGELOG.md
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
15
### Removed
16
17
### Fixed
18
+- Missing include of `IPAddress.h` in `Client.h`
19
20
### Security
21
SampleProjects/NetworkLib/test/client.cpp
@@ -0,0 +1,7 @@
1
+#include <ArduinoUnitTests.h>
2
+// test for including <Client.h> without <Arduino.h>
3
+#include <Client.h>
4
+
5
+unittest(test) { assertTrue(true); }
6
7
+unittest_main()
cpp/arduino/Client.h
@@ -1,6 +1,7 @@
#pragma once
#include <Stream.h>
+#include <IPAddress.h>
class Client : public Stream {
public:
0 commit comments