diff --git a/deps/ox/src/ox/std/typetraits.hpp b/deps/ox/src/ox/std/typetraits.hpp index f788c327..70012e7e 100644 --- a/deps/ox/src/ox/std/typetraits.hpp +++ b/deps/ox/src/ox/std/typetraits.hpp @@ -71,9 +71,13 @@ template<> struct is_integral: true_type {}; template constexpr bool is_integral_v = is_integral::value; +template struct is_char: false_type {}; +template<> struct is_char : true_type {}; +template +constexpr bool is_char_v = is_char::value; + template struct is_bool: false_type {}; template<> struct is_bool : true_type {}; - template constexpr bool is_bool_v = is_bool::value;