diff --git a/include/xtl/xmasked_value.hpp b/include/xtl/xmasked_value.hpp index 1009b4c..157e427 100644 --- a/include/xtl/xmasked_value.hpp +++ b/include/xtl/xmasked_value.hpp @@ -541,6 +541,28 @@ namespace xtl #undef DEFINE_UNARY_BOOL_OPERATOR #undef DEFINE_OPERATOR #undef DEFINE_BOOL_OPERATOR + + + template + struct is_scalar> : is_scalar> + { + }; + + template + struct is_arithmetic> : is_arithmetic> + { + }; + + template + struct is_signed> : is_signed> + { + }; + + template + struct is_floating_point> : is_floating_point> + { + }; + } #endif