1 
2 //  (C) Copyright Edward Diener 2011-2015
3 //  Use, modification and distribution are subject to the Boost Software License,
4 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 //  http://www.boost.org/LICENSE_1_0.txt).
6 
7 #if !defined(BOOST_VMD_DETAIL_EQUAL_TYPE_HPP)
8 #define BOOST_VMD_DETAIL_EQUAL_TYPE_HPP
9 
10 #include <boost/vmd/detail/match_single_identifier.hpp>
11 #include <boost/vmd/detail/type_registration.hpp>
12 
13 #define BOOST_VMD_DETAIL_EQUAL_TYPE(type1,type2) \
14     BOOST_VMD_DETAIL_MATCH_SINGLE_IDENTIFIER(type1,type2) \
15 /**/
16 
17 #define BOOST_VMD_DETAIL_EQUAL_TYPE_D(d,type1,type2) \
18     BOOST_VMD_DETAIL_MATCH_SINGLE_IDENTIFIER(type1,type2) \
19 /**/
20 
21 #endif /* BOOST_VMD_DETAIL_EQUAL_TYPE_HPP */
22