]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/iterator/test/zip_iterator_test_std_pair.cpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / iterator / test / zip_iterator_test_std_pair.cpp
1 // Copyright (c) 2014 Kohei Takahashi.
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See
4 // accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // See http://www.boost.org for most recent version including documentation.
8
9 #include <boost/config.hpp>
10 #include <boost/config/workaround.hpp>
11 #include <boost/config/pragma_message.hpp>
12
13 #if BOOST_WORKAROUND(BOOST_MSVC, < 1600)
14
15 BOOST_PRAGMA_MESSAGE("Skipping test on msvc-9.0 and below")
16 int main() {}
17
18 #elif defined(BOOST_GCC) && __cplusplus < 201100
19
20 BOOST_PRAGMA_MESSAGE("Skipping test on g++ in C++03 mode")
21 int main() {}
22
23 #else
24
25 #include <utility>
26 #include <boost/fusion/adapted/std_pair.hpp>
27
28 #define TUPLE std::pair
29 #define MAKE_TUPLE std::make_pair
30
31 #include "detail/zip_iterator_test.ipp"
32
33 #endif