mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
55 lines
1.0 KiB
C++
55 lines
1.0 KiB
C++
// Copyright Benoit Blanchon 2014-2016
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
// If you like this project, please add a star!
|
|
|
|
#pragma once
|
|
|
|
// If Visual Studo <= 2012
|
|
#if defined(_MSC_VER) && _MSC_VER <= 1700
|
|
#include <float.h>
|
|
#else
|
|
#include <math.h>
|
|
#endif
|
|
|
|
// GCC warning: "conversion to 'float' from 'double' may alter its value"
|
|
#ifdef __GNUC__
|
|
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
|
|
#pragma GCC diagnostic push
|
|
#endif
|
|
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9)
|
|
#pragma GCC diagnostic ignored "-Wfloat-conversion"
|
|
#else
|
|
#pragma GCC diagnostic ignored "-Wconversion"
|
|
#endif
|
|
#endif
|
|
|
|
namespace ArduinoJson {
|
|
namespace Polyfills {
|
|
|
|
// If Visual Studo <= 2012
|
|
#if defined(_MSC_VER) && _MSC_VER <= 1700
|
|
|
|
template <typename T>
|
|
bool isNaN(T x) {
|
|
return _isnan(x) != 0;
|
|
}
|
|
#else
|
|
|
|
template <typename T>
|
|
bool isNaN(T x) {
|
|
return isnan(x);
|
|
}
|
|
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#if defined(__GNUC__)
|
|
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
|
|
#pragma GCC diagnostic pop
|
|
#endif
|
|
#endif
|