]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/vmd/include/boost/vmd/detail/is_seq.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / vmd / include / boost / vmd / detail / is_seq.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_SEQ_HPP)
8 #define BOOST_VMD_DETAIL_IS_SEQ_HPP
9
10 #include <boost/vmd/detail/is_entire.hpp>
11 #include <boost/vmd/detail/seq.hpp>
12
13 #define BOOST_VMD_DETAIL_IS_SEQ(seq) \
14 BOOST_VMD_DETAIL_IS_ENTIRE \
15 ( \
16 BOOST_VMD_DETAIL_SEQ_SPLIT(seq) \
17 ) \
18 /**/
19
20 #define BOOST_VMD_DETAIL_IS_SEQ_D(d,seq) \
21 BOOST_VMD_DETAIL_IS_ENTIRE \
22 ( \
23 BOOST_VMD_DETAIL_SEQ_SPLIT_D(d,seq) \
24 ) \
25 /**/
26
27 #endif /* BOOST_VMD_DETAIL_IS_SEQ_HPP */