mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-13 10:43:01 +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
|