mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
18 lines
416 B
C++
18 lines
416 B
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2021
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
namespace ARDUINOJSON_NAMESPACE {
|
|
|
|
template <typename T, typename Enable = void>
|
|
struct Converter;
|
|
|
|
// clang-format off
|
|
template <typename T1, typename T2>
|
|
class InvalidConversion; // Error here? See https://arduinojson.org/v6/invalid-conversion/
|
|
// clang-format on
|
|
|
|
} // namespace ARDUINOJSON_NAMESPACE
|