Go to the documentation of this file.
14 # ifndef RCPP_PREPROCESSOR_CAT_HPP
15 # define RCPP_PREPROCESSOR_CAT_HPP
19 # if ~RCPP_PP_CONFIG_FLAGS() & RCPP_PP_CONFIG_MWCC()
20 # define RCPP_PP_CAT(a, b) RCPP_PP_CAT_I(a, b)
22 # define RCPP_PP_CAT(a, b) RCPP_PP_CAT_OO((a, b))
23 # define RCPP_PP_CAT_OO(par) RCPP_PP_CAT_I ## par
26 # if ~RCPP_PP_CONFIG_FLAGS() & RCPP_PP_CONFIG_MSVC()
27 # define RCPP_PP_CAT_I(a, b) a ## b
29 # define RCPP_PP_CAT_I(a, b) RCPP_PP_CAT_II(a ## b)
30 # define RCPP_PP_CAT_II(res) res