Home
last modified time | relevance | path

Searched refs:PP_CAT (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/callable_traits/test/
Dqualifier_metafunction_constraints.hpp10 #ifndef PP_CAT
12 #define PP_CAT(x, y) PP_CAT_(x, y) macro
16 struct PP_CAT(is_sub_failure_, CALLABLE_TRAIT_UNDER_TEST) { in PP_CAT() function
29 bool PP_CAT(test_, CALLABLE_TRAIT_UNDER_TEST)() { in PP_CAT() function
30 CT_ASSERT(PP_CAT(is_sub_failure_, CALLABLE_TRAIT_UNDER_TEST)<int>::value); in PP_CAT()
31 CT_ASSERT(PP_CAT(is_sub_failure_, CALLABLE_TRAIT_UNDER_TEST)<int &>::value); in PP_CAT()
32 CT_ASSERT(PP_CAT(is_sub_failure_, CALLABLE_TRAIT_UNDER_TEST)<int(&)()>::value); in PP_CAT()
33 CT_ASSERT(PP_CAT(is_sub_failure_, CALLABLE_TRAIT_UNDER_TEST)<int(*)()>::value); in PP_CAT()
34 CT_ASSERT(PP_CAT(is_sub_failure_, CALLABLE_TRAIT_UNDER_TEST)<int(* const foo::*)()>::value); in PP_CAT()
35 CT_ASSERT(PP_CAT(is_sub_failure_, CALLABLE_TRAIT_UNDER_TEST)<int foo::*>::value); in PP_CAT()
[all …]
Dtest.hpp30 #ifndef PP_CAT
32 #define PP_CAT(x, y) PP_CAT_(x, y) macro
38 #define TRAIT(trait, ...) PP_CAT(trait, _t)<__VA_ARGS__>