]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/vmd/test/test_seq_to_list.cxx
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / vmd / test / test_seq_to_list.cxx
1
2 // (C) Copyright Edward Diener 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 #include <boost/vmd/seq/to_list.hpp>
8 #include <boost/vmd/is_empty_list.hpp>
9 #include <boost/detail/lightweight_test.hpp>
10 #include <boost/preprocessor/list/at.hpp>
11
12 int main()
13 {
14
15 #if BOOST_PP_VARIADICS
16
17 #define A_SEQ (1)(2)(3)(4)
18 #define AN_EMPTY_SEQ
19
20 BOOST_TEST_EQ(BOOST_PP_LIST_AT(BOOST_VMD_SEQ_TO_LIST(A_SEQ),0),1);
21 BOOST_TEST(BOOST_VMD_IS_EMPTY_LIST(BOOST_VMD_SEQ_TO_LIST(AN_EMPTY_SEQ)));
22
23 #else
24
25 BOOST_ERROR("No variadic macro support");
26
27 #endif
28
29 return boost::report_errors();
30
31 }