]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/container/test/pmr_map_test.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / container / test / pmr_map_test.cpp
1 //////////////////////////////////////////////////////////////////////////////
2 //
3 // (C) Copyright Ion Gaztanaga 2015-2015. Distributed under the Boost
4 // Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // See http://www.boost.org/libs/container for documentation.
8 //
9 //////////////////////////////////////////////////////////////////////////////
10
11 #include <boost/container/pmr/map.hpp>
12 #include <boost/static_assert.hpp>
13 #include <boost/container/detail/type_traits.hpp>
14
15 int main()
16 {
17 using namespace boost::container;
18 using boost::container::container_detail::is_same;
19
20 typedef map<int, float, std::less<int>, pmr::polymorphic_allocator<std::pair<const int, float> > > intcontainer_t;
21 BOOST_STATIC_ASSERT(( is_same<intcontainer_t, pmr::map_of<int, float>::type >::value ));
22 #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
23 BOOST_STATIC_ASSERT(( is_same<intcontainer_t, pmr::map<int, float> >::value ));
24 #endif
25 return 0;
26 }