Files
thirdparty-ArduinoJson/src/ArduinoJson/Strings/IsString.hpp
2021-12-07 16:08:44 +01:00

18 lines
393 B
C++

// ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021
// MIT License
#pragma once
#include <ArduinoJson/Polyfills/type_traits.hpp>
namespace ARDUINOJSON_NAMESPACE {
template <typename T, typename Enable = void>
struct IsString : false_type {};
template <typename TChar>
struct IsString<const TChar*> : IsString<TChar*> {};
} // namespace ARDUINOJSON_NAMESPACE