mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Address C++14 defect(CWG1558)
This commit is contained in:
parent
3de5b3a12f
commit
d3ac9a69eb
|
@ -116,8 +116,8 @@ if gen_network_header:
|
|||
print("")
|
||||
|
||||
print("""
|
||||
template<class...>
|
||||
using void_t = void;
|
||||
template<typename... Ts> struct make_void { typedef void type;};
|
||||
template<typename... Ts> using void_t = typename make_void<Ts...>::type;
|
||||
|
||||
template<typename T, typename = void>
|
||||
struct is_sixup {
|
||||
|
|
Loading…
Reference in a new issue