8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2016cf commit dadd898Copy full SHA for dadd898
include/ArduinoJson/JsonBuffer.hpp
@@ -9,6 +9,12 @@
9
#include <stddef.h> // for size_t
10
#include <stdint.h> // for uint8_t
11
12
+#if defined(__clang__)
13
+#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
14
+#elif defined(__GNUC__)
15
+#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
16
+#endif
17
+
18
namespace ArduinoJson {
19
class JsonArray;
20
class JsonObject;
src/CMakeLists.txt
@@ -20,6 +20,7 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
-Wno-sign-conversion
21
-Wno-unused
22
-Wno-variadic-macros
23
+ -Wnon-virtual-dtor
24
-Wold-style-cast
25
-Woverloaded-virtual
26
-Wredundant-decls
0 commit comments