Added a flag to ignore deprecation warnings

This commit is contained in:
Benoît Blanchon
2014-07-17 13:27:40 +02:00
parent 78249a0ada
commit ca01ecfb49
4 changed files with 11 additions and 3 deletions

View File

@ -6,13 +6,15 @@
#pragma once
#include "jsmn.h"
#ifndef ARDUINO_JSON_NO_DEPRECATED_WARNING
#ifdef __GNUC__
#define DEPRECATED __attribute__((deprecated))
#elif defined(_MSC_VER)
#define DEPRECATED __declspec(deprecated)
#else
#define DEPRECATED
#endif
#else
#define DEPRECATED
#endif
namespace ArduinoJson