From fa3e37f99f33f4654f1371fa3908a368a2973824 Mon Sep 17 00:00:00 2001 From: MacDada Date: Sat, 13 May 2023 16:27:28 +0200 Subject: [PATCH] ESPAsyncTCP.h: remove unnecessary semicolon Fixes a warning when compiling with `-Wpedantic`: ``` .pio/libdeps/nodemcu/ESPAsyncTCP/src/ESPAsyncTCP.h:34:2: warning: extra ';' [-Wpedantic] 34 | }; | ^ ``` --- src/ESPAsyncTCP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ESPAsyncTCP.h b/src/ESPAsyncTCP.h index 2d1f768..f7bb06f 100644 --- a/src/ESPAsyncTCP.h +++ b/src/ESPAsyncTCP.h @@ -31,7 +31,7 @@ extern "C" { #include "lwip/init.h" #include "lwip/err.h" #include "lwip/pbuf.h" -}; +} class AsyncClient; class AsyncServer;