diff --git a/deps/ox/src/ox/std/typetraits.hpp b/deps/ox/src/ox/std/typetraits.hpp index 20e8fb10..d06cbe2a 100644 --- a/deps/ox/src/ox/std/typetraits.hpp +++ b/deps/ox/src/ox/std/typetraits.hpp @@ -81,7 +81,7 @@ template struct is_class: ox::integral_constant::value && ox::memberable(0)> {}; namespace test { -class TestClass {int i;}; +struct TestClass {int i;}; union TestUnion {int i;}; static_assert(ox::is_class::value == true); static_assert(ox::is_class::value == false);