1
0
mirror of https://github.com/nlohmann/json synced 2024-11-23 04:20:06 +00:00
nlohmannjson/include/nlohmann/detail/meta/void_t.hpp

11 lines
102 B
C++

#pragma once
namespace nlohmann
{
namespace detail
{
template <typename...>
using void_t = void;
}
}