diff --git a/deps/nostalgia/deps/ox/src/ox/std/typetraits.hpp b/deps/nostalgia/deps/ox/src/ox/std/typetraits.hpp index 5810b24..4b480f4 100644 --- a/deps/nostalgia/deps/ox/src/ox/std/typetraits.hpp +++ b/deps/nostalgia/deps/ox/src/ox/std/typetraits.hpp @@ -143,7 +143,7 @@ template constexpr bool memberable(...) { return false; } template -struct is_class: integral_constant::value && memberable(0)> {}; +struct is_class: integral_constant && memberable(nullptr)> {}; namespace test { struct TestClass {int i;};