From be75fe772666c99c157a979e41a27ade78f604d4 Mon Sep 17 00:00:00 2001 From: Gilles Degottex Date: Mon, 8 Apr 2024 11:43:19 +0200 Subject: [PATCH] add virtual destructor to avoid warning --- cores/arduino/Server.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cores/arduino/Server.h b/cores/arduino/Server.h index 69e3e39fe..8dfd70432 100644 --- a/cores/arduino/Server.h +++ b/cores/arduino/Server.h @@ -25,6 +25,7 @@ class Server : public Print { public: virtual void begin() =0; + virtual ~Server() {} }; #endif