From 205781b921ce567eaad2ba27c6d8ac924ba3ff38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Andr=C3=A1ssy?= <10706773+JAndrassy@users.noreply.github.com> Date: Tue, 2 Apr 2024 19:40:37 +0200 Subject: [PATCH] core Server class back to Arduino Core API version (#9447) --- 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 6a940a0b5..1be918730 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