2026-02-13 19:15:05 +01:00
|
|
|
// __ _____ _____ _____
|
|
|
|
|
// __| | __| | | | JSON for Modern C++
|
2026-04-17 21:00:35 +02:00
|
|
|
// | | |__ | | | | | | version 3.12.0
|
2026-02-13 19:15:05 +01:00
|
|
|
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
//
|
2026-04-17 21:00:35 +02:00
|
|
|
// SPDX-FileCopyrightText: 2013 - 2025 Niels Lohmann <https://nlohmann.me>
|
2026-02-13 19:15:05 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <nlohmann/detail/abi_macros.hpp>
|
|
|
|
|
|
|
|
|
|
NLOHMANN_JSON_NAMESPACE_BEGIN
|
|
|
|
|
namespace detail
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
template<typename ...Ts> struct make_void
|
|
|
|
|
{
|
|
|
|
|
using type = void;
|
|
|
|
|
};
|
|
|
|
|
template<typename ...Ts> using void_t = typename make_void<Ts...>::type;
|
|
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
|
NLOHMANN_JSON_NAMESPACE_END
|