1234567891011121314151617181920212223242526 |
- #ifndef BOOST_CONTRACT_DETAIL_CONFIG_HPP_
- #define BOOST_CONTRACT_DETAIL_CONFIG_HPP_
- #include <boost/preprocessor/cat.hpp>
- #ifndef BOOST_CONTRACT_DETAIL_NAME_INFIX
-
- #define BOOST_CONTRACT_DETAIL_NAME_INFIX X
- #endif
- #ifndef BOOST_CONTRACT_DETAIL_NAME_PREFIX
- #define BOOST_CONTRACT_DETAIL_NAME_PREFIX \
- BOOST_PP_CAT(boost_contract_detail, BOOST_CONTRACT_DETAIL_NAME_INFIX)
- #endif
- #endif
|