File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
include/boost/compute/type_traits Expand file tree Collapse file tree 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 {};
3333 template <> struct is_fundamental <BOOST_PP_CAT(BOOST_PP_CAT(type, 2 ), _)> : boost::true_type {}; \
3434 template <> struct is_fundamental <BOOST_PP_CAT(BOOST_PP_CAT(type, 4 ), _)> : boost::true_type {}; \
3535 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 {};
3741
3842BOOST_COMPUTE_DETAIL_DECLARE_FUNDAMENTAL (char )
3943BOOST_COMPUTE_DETAIL_DECLARE_FUNDAMENTAL (uchar)
You can’t perform that action at this time.
0 commit comments