2022-07-20 13:38:07 +03:00
|
|
|
// __ _____ _____ _____
|
|
|
|
|
// __| | __| | | | JSON for Modern C++
|
2022-08-01 00:19:06 +03:00
|
|
|
// | | |__ | | | | | | version 3.11.0
|
2022-07-20 13:38:07 +03:00
|
|
|
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
//
|
|
|
|
|
// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me>
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
2018-07-24 14:22:44 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
2022-07-30 22:59:13 +03:00
|
|
|
#include <nlohmann/detail/abi_macros.hpp>
|
|
|
|
|
|
|
|
|
|
NLOHMANN_JSON_NAMESPACE_BEGIN
|
2018-07-24 14:22:44 +03:00
|
|
|
namespace detail
|
|
|
|
|
{
|
2022-07-30 22:59:13 +03:00
|
|
|
|
2020-06-03 15:20:36 +03:00
|
|
|
template<typename ...Ts> struct make_void
|
2018-09-07 13:15:35 +03:00
|
|
|
{
|
|
|
|
|
using type = void;
|
|
|
|
|
};
|
2020-06-03 15:20:36 +03:00
|
|
|
template<typename ...Ts> using void_t = typename make_void<Ts...>::type;
|
2022-07-30 22:59:13 +03:00
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
|
NLOHMANN_JSON_NAMESPACE_END
|