123456789101112131415161718192021222324 |
- #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;
- }
- NLOHMANN_JSON_NAMESPACE_END
|