Mute compiler warning (issue #47)

This commit is contained in:
Benoit Blanchon
2015-01-15 21:05:14 +01:00
parent e2016cf65b
commit dadd8986dc
2 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,12 @@
#include <stddef.h> // for size_t
#include <stdint.h> // for uint8_t
#if defined(__clang__)
#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
#elif defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
#endif
namespace ArduinoJson {
class JsonArray;
class JsonObject;