equal_type.hpp 713 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_EQUAL_TYPE_HPP)
  6. #define BOOST_VMD_DETAIL_EQUAL_TYPE_HPP
  7. #include <boost/vmd/detail/match_single_identifier.hpp>
  8. #include <boost/vmd/detail/type_registration.hpp>
  9. #define BOOST_VMD_DETAIL_EQUAL_TYPE(type1,type2) \
  10. BOOST_VMD_DETAIL_MATCH_SINGLE_IDENTIFIER(type1,type2) \
  11. /**/
  12. #define BOOST_VMD_DETAIL_EQUAL_TYPE_D(d,type1,type2) \
  13. BOOST_VMD_DETAIL_MATCH_SINGLE_IDENTIFIER(type1,type2) \
  14. /**/
  15. #endif /* BOOST_VMD_DETAIL_EQUAL_TYPE_HPP */