]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/tr1/test/test_tr1_include.cpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / tr1 / test / test_tr1_include.cpp
1 // (C) Copyright John Maddock 2005.
2 // Use, modification and distribution are subject to the
3 // Boost Software License, Version 1.0. (See accompanying file
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 // Verify that the headers can be included, even if their contents
7 // aren't neccessarily usable by broken compilers.
8
9 #ifdef TEST_STD_HEADERS
10
11 #include <memory>
12 #include <array>
13 #include <complex>
14 #include <functional>
15 #include <random>
16 #include <regex>
17 #include <tuple>
18 #include <utility>
19 #include <type_traits>
20
21 #else
22
23 #include <boost/tr1/array.hpp>
24 #include <boost/tr1/complex.hpp>
25 #include <boost/tr1/functional.hpp>
26 #include <boost/tr1/memory.hpp>
27 #include <boost/tr1/random.hpp>
28 #include <boost/tr1/regex.hpp>
29 #include <boost/tr1/tuple.hpp>
30 #include <boost/tr1/type_traits.hpp>
31 #include <boost/tr1/utility.hpp>
32
33 #endif
34
35
36
37
38