]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/vmd/include/boost/vmd/detail/is_type_type.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / vmd / include / boost / vmd / detail / is_type_type.hpp
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_IS_TYPE_TYPE_HPP)
8 #define BOOST_VMD_DETAIL_IS_TYPE_TYPE_HPP
9
10 #include <boost/vmd/detail/type_registration.hpp>
11 #include <boost/vmd/detail/match_single_identifier.hpp>
12
13 /*
14
15 Check to see if the 'id' is BOOST_VMD_TYPE_TYPE
16
17 Returns 1 if it is, else 0
18
19 */
20
21 #define BOOST_VMD_DETAIL_IS_TYPE_TYPE(id) \
22 BOOST_VMD_DETAIL_MATCH_SINGLE_IDENTIFIER(id,BOOST_VMD_TYPE_TYPE) \
23 /**/
24
25 #endif /* BOOST_VMD_DETAIL_IS_TYPE_TYPE_HPP */