From 504bda8299caea3ddb01d1e976935d7ffa6e3986 Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Thu, 27 Oct 2022 00:55:55 +0300 Subject: [PATCH] web: always export arduinojson overrides --- code/espurna/light.cpp | 1 - code/espurna/telnet.cpp | 1 - code/espurna/web.cpp | 2 -- code/espurna/web.h | 2 ++ 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/code/espurna/light.cpp b/code/espurna/light.cpp index 87ca5435..7dfb5915 100644 --- a/code/espurna/light.cpp +++ b/code/espurna/light.cpp @@ -19,7 +19,6 @@ Copyright (C) 2019-2021 by Maxim Prokhorov -#include "web_utils.h" #include #include diff --git a/code/espurna/telnet.cpp b/code/espurna/telnet.cpp index de579dcf..83c5f42f 100644 --- a/code/espurna/telnet.cpp +++ b/code/espurna/telnet.cpp @@ -31,7 +31,6 @@ Updated to use WiFiServer and support reverse connections by Niek van der Maas < #include "mqtt.h" #include "telnet.h" #include "terminal.h" -#include "web_utils.h" #include "wifi.h" #include "ws.h" diff --git a/code/espurna/web.cpp b/code/espurna/web.cpp index ee13a6ae..d2208073 100644 --- a/code/espurna/web.cpp +++ b/code/espurna/web.cpp @@ -29,8 +29,6 @@ Copyright (C) 2016-2019 by Xose Pérez #include "utils.h" #include "web.h" -#include "web_utils.h" - #if WEB_EMBEDDED namespace { diff --git a/code/espurna/web.h b/code/espurna/web.h index 92f32c13..0469bfa5 100644 --- a/code/espurna/web.h +++ b/code/espurna/web.h @@ -18,6 +18,8 @@ Copyright (C) 2016-2019 by Xose Pérez #include #include +#include "web_utils.h" + struct AsyncWebPrintConfig { struct Backlog { size_t count;