// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once namespace ArduinoJson { namespace Internals { // A meta-function that returns true if types T and U are the same. template struct IsSame { static const bool value = false; }; template struct IsSame { static const bool value = true; }; } }