mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-20 00:06:39 +01:00
14 lines
244 B
C++
14 lines
244 B
C++
|
#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
|