// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once #include "IsSame.hpp" namespace ArduinoJson { namespace Internals { // A meta-function that returns true if T is a floating point type template struct IsFloatingPoint { static const bool value = IsSame::value || IsSame::value; }; } }