identifier_concat.hpp 648 B

123456789101112131415161718192021
  1. // (C) Copyright Edward Diener 2011-2015
  2. // Use, modification and distribution are subject to the Boost Software License,
  3. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt).
  5. #if !defined(BOOST_VMD_DETAIL_IDENTIFIER_CONCAT_HPP)
  6. #define BOOST_VMD_DETAIL_IDENTIFIER_CONCAT_HPP
  7. #include <boost/preprocessor/cat.hpp>
  8. #include <boost/vmd/detail/idprefix.hpp>
  9. #define BOOST_VMD_DETAIL_IDENTIFIER_CONCATENATE(vseq) \
  10. BOOST_PP_CAT \
  11. ( \
  12. BOOST_VMD_DETAIL_IDENTIFIER_REGISTRATION_PREFIX, \
  13. vseq \
  14. ) \
  15. /**/
  16. #endif /* BOOST_VMD_DETAIL_IDENTIFIER_CONCAT_HPP */