From c9450a100506d4c8487a77aefd0bf9b447b742e6 Mon Sep 17 00:00:00 2001 From: david gauchard Date: Fri, 19 Jul 2019 23:48:05 +0200 Subject: [PATCH] fix to compile with current esp8266/arduino git head together with https://github.com/esp8266/Arduino/pull/6321 --- src/AutoConnect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoConnect.h b/src/AutoConnect.h index e7ee717..0469626 100644 --- a/src/AutoConnect.h +++ b/src/AutoConnect.h @@ -376,7 +376,7 @@ class AutoConnect { static const String _emptyString; /**< An empty string alloaction **/ #if defined(ARDUINO_ARCH_ESP8266) - friend class ESP8266WebServer; + friend ESP8266WebServer; #elif defined(ARDUINO_ARCH_ESP32) friend class WebServer; #endif