From 6bc2da2414ead0a376ae02c264eefc9d8558c5a8 Mon Sep 17 00:00:00 2001 From: Juraj Andrassy Date: Tue, 2 Apr 2024 18:29:36 +0200 Subject: [PATCH] core Server class back to Arduino Core API version --- cores/esp32/Server.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/esp32/Server.h b/cores/esp32/Server.h index 6a940a0b5fa..1be91873082 100644 --- a/cores/esp32/Server.h +++ b/cores/esp32/Server.h @@ -25,7 +25,7 @@ class Server: public Print { public: - virtual void begin(uint16_t port=0) =0; + virtual void begin() =0; }; #endif