Sign in
flutter
/
third_party
/
json
/
ffdeb77468040576f7fcd1a0ba932725295a22ea
/
.
/
include
/
nlohmann
/
detail
/
meta
/
void_t.hpp
blob: 4ee2c86f0d096c3b8de28a3934871f6eaad0e320 [
file
] [
log
] [
blame
]
#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