summaryrefslogtreecommitdiff
path: root/include/lib/modernjson/detail/meta/void_t.hpp
blob: 2528ea84c2c5c14b8231518230f6bf566e150c86 (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;
}
}