// ArduinoJson - https://arduinojson.org // Copyright Benoit Blanchon 2014-2021 // MIT License #pragma once #include namespace ARDUINOJSON_NAMESPACE { template struct conditional { typedef TrueType type; }; template struct conditional { typedef FalseType type; }; } // namespace ARDUINOJSON_NAMESPACE