From 2e7d0bf432a7a120238e1088ff0be147b6cb1bb3 Mon Sep 17 00:00:00 2001 From: zhanglinjing Date: Wed, 4 Dec 2024 08:53:47 +0100 Subject: [PATCH] test --- cores/Client.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cores/Client.h b/cores/Client.h index 111f335d..1c658cba 100644 --- a/cores/Client.h +++ b/cores/Client.h @@ -46,7 +46,9 @@ class Client : public Stream { virtual operator bool() = 0; protected: - uint8_t *rawIPAddress(IPAddress &addr) { return addr.raw_address(); }; + uint8_t *rawIPAddress(IPAddress &addr) { + return addr.raw_address(); + }; }; #endif /* client_h */