summaryrefslogtreecommitdiff
path: root/include/lib/modernjson/detail/meta/void_t.hpp
blob: a256f85ad12f9371a0c6a793fd858ac8eea5943b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

namespace nlohmann
{
namespace detail
{
template <typename ...Ts> struct make_void
{
    using type = void;
};
template <typename ...Ts> using void_t = typename make_void<Ts...>::type;
} // namespace detail
}  // namespace nlohmann