diff --git a/deps/ox/src/ox/std/typetraits.hpp b/deps/ox/src/ox/std/typetraits.hpp index ee8ac99b..fba353a2 100644 --- a/deps/ox/src/ox/std/typetraits.hpp +++ b/deps/ox/src/ox/std/typetraits.hpp @@ -53,6 +53,15 @@ using false_type = integral_constant; using true_type = integral_constant; +// is_const ///////////////////////////////////////////////////////////////// + +template +constexpr bool is_const_v = false; + +template +constexpr bool is_const_v = true; + + // is_integral ///////////////////////////////////////////////////////////////// template struct is_integral: false_type {};