MushMachine/external/json/include/nlohmann/detail/meta/void_t.hpp

25 lines
597 B
C++
Raw Normal View History

2022-08-02 14:28:39 +02:00
// __ _____ _____ _____
// __| | __| | | | JSON for Modern C++
// | | |__ | | | | | | version 3.11.1
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
//
// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me>
// SPDX-License-Identifier: MIT
#pragma once
2022-08-02 14:28:39 +02:00
#include <nlohmann/detail/abi_macros.hpp>
NLOHMANN_JSON_NAMESPACE_BEGIN
namespace detail
{
2022-08-02 14:28:39 +02:00
template<typename ...Ts> struct make_void
{
using type = void;
};
template<typename ...Ts> using void_t = typename make_void<Ts...>::type;
2022-08-02 14:28:39 +02:00
} // namespace detail
NLOHMANN_JSON_NAMESPACE_END