mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-04 06:35:59 +00: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
|