[ox/std] Cleanup

This commit is contained in:
Gary Talent 2024-04-13 00:10:09 -05:00
parent 1b790a34c4
commit abc076d657

View File

@ -143,7 +143,7 @@ template<typename T>
constexpr bool memberable(...) { return false; } constexpr bool memberable(...) { return false; }
template<typename T> template<typename T>
struct is_class: integral_constant<bool, !is_union<T>::value && memberable<T>(0)> {}; struct is_class: integral_constant<bool, !is_union_v<T> && memberable<T>(nullptr)> {};
namespace test { namespace test {
struct TestClass {int i;}; struct TestClass {int i;};