[ox/std] Fix syntax error in std::is_union_v

(synced from 32d7c7b9e2)
This commit is contained in:
2019-07-19 22:10:32 -05:00
parent df8f8c581a
commit 2df8d26973
+1 -1
View File
@@ -19,7 +19,7 @@
namespace std {
template<typename T>
constexpr bool is_union_v<T> = __is_union(T);
constexpr bool is_union_v = __is_union(T);
}