File tree 2 files changed +4
-0
lines changed 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ template <> struct is_scalar<signed int> { static bool const value=true; };
28
28
template <> struct is_scalar <unsigned int > { static bool const value=true ; };
29
29
template <> struct is_scalar <signed long > { static bool const value=true ; };
30
30
template <> struct is_scalar <unsigned long > { static bool const value=true ; };
31
+ template <> struct is_scalar <signed long long > { static bool const value=true ; };
32
+ template <> struct is_scalar <unsigned long long > { static bool const value=true ; };
31
33
template <> struct is_scalar <float > { static bool const value=true ; };
32
34
template <> struct is_scalar <double > { static bool const value=true ; };
33
35
template <> struct is_scalar <long double > { static bool const value=true ; };
Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ tester<is_scalar<long double>::value> t13;
38
38
tester<!is_scalar<vec<float ,4 > >::value> t14;
39
39
tester<!is_scalar<mat<float ,4 ,4 > >::value> t15;
40
40
tester<!is_scalar<quat<float > >::value> t16;
41
+ tester<is_scalar<signed long long >::value> t17;
42
+ tester<is_scalar<unsigned long long >::value> t18;
41
43
42
44
int
43
45
main ()
You can’t perform that action at this time.
0 commit comments