From 2df8d269734fc596314333db7b47e86d7507326a Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 19 Jul 2019 22:10:32 -0500 Subject: [PATCH] [ox/std] Fix syntax error in std::is_union_v (synced from 32d7c7b9e2bb2418360ab8afd8995ecf36e965b3) --- src/ox/std/typetraits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/std/typetraits.hpp b/src/ox/std/typetraits.hpp index d06cbe2a1..a0d2ffb01 100644 --- a/src/ox/std/typetraits.hpp +++ b/src/ox/std/typetraits.hpp @@ -19,7 +19,7 @@ namespace std { template -constexpr bool is_union_v = __is_union(T); +constexpr bool is_union_v = __is_union(T); }