// ArduinoJson - https://arduinojson.org // Copyright Benoit Blanchon 2014-2021 // MIT License #pragma once #include "lib/ArduinoJson/Namespace.hpp" namespace ARDUINOJSON_NAMESPACE { // A meta-function that return the type T without the const modifier template struct remove_const { typedef T type; }; template struct remove_const { typedef T type; }; } // namespace ARDUINOJSON_NAMESPACE