File tree 1 file changed +5
-1
lines changed
include/boost/compute/type_traits
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,11 @@ struct is_fundamental : public boost::false_type {};
33
33
template <> struct is_fundamental <BOOST_PP_CAT(BOOST_PP_CAT(type, 2 ), _)> : boost::true_type {}; \
34
34
template <> struct is_fundamental <BOOST_PP_CAT(BOOST_PP_CAT(type, 4 ), _)> : boost::true_type {}; \
35
35
template <> struct is_fundamental <BOOST_PP_CAT(BOOST_PP_CAT(type, 8 ), _)> : boost::true_type {}; \
36
- template <> struct is_fundamental <BOOST_PP_CAT(BOOST_PP_CAT(type, 16 ), _)> : boost::true_type {};
36
+ template <> struct is_fundamental <BOOST_PP_CAT(BOOST_PP_CAT(type, 16 ), _)> : boost::true_type {}; \
37
+ template <> struct is_fundamental <BOOST_PP_CAT(cl_, BOOST_PP_CAT(type, 2 ))> : boost::true_type {}; \
38
+ template <> struct is_fundamental <BOOST_PP_CAT(cl_, BOOST_PP_CAT(type, 4 ))> : boost::true_type {}; \
39
+ template <> struct is_fundamental <BOOST_PP_CAT(cl_, BOOST_PP_CAT(type, 8 ))> : boost::true_type {}; \
40
+ template <> struct is_fundamental <BOOST_PP_CAT(cl_, BOOST_PP_CAT(type, 16 ))> : boost::true_type {};
37
41
38
42
BOOST_COMPUTE_DETAIL_DECLARE_FUNDAMENTAL (char )
39
43
BOOST_COMPUTE_DETAIL_DECLARE_FUNDAMENTAL (uchar)
You can’t perform that action at this time.
0 commit comments