File indexing completed on 2025-12-15 09:45:25
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef BOOST_CONTAINER_CONTAINER_DETAIL_TYPE_TRAITS_HPP
0017 #define BOOST_CONTAINER_CONTAINER_DETAIL_TYPE_TRAITS_HPP
0018
0019 #ifndef BOOST_CONFIG_HPP
0020 # include <boost/config.hpp>
0021 #endif
0022
0023 #if defined(BOOST_HAS_PRAGMA_ONCE)
0024 # pragma once
0025 #endif
0026
0027 #include <boost/move/detail/type_traits.hpp>
0028
0029 namespace boost {
0030 namespace container {
0031 namespace dtl {
0032
0033 using ::boost::move_detail::enable_if;
0034 using ::boost::move_detail::enable_if_and;
0035 using ::boost::move_detail::is_same;
0036 using ::boost::move_detail::is_different;
0037 using ::boost::move_detail::is_pointer;
0038 using ::boost::move_detail::add_reference;
0039 using ::boost::move_detail::add_const;
0040 using ::boost::move_detail::add_const_reference;
0041 using ::boost::move_detail::remove_const;
0042 using ::boost::move_detail::remove_reference;
0043 using ::boost::move_detail::remove_cvref;
0044 using ::boost::move_detail::make_unsigned;
0045 using ::boost::move_detail::is_floating_point;
0046 using ::boost::move_detail::is_integral;
0047 using ::boost::move_detail::is_enum;
0048 using ::boost::move_detail::is_pod;
0049 using ::boost::move_detail::is_empty;
0050 using ::boost::move_detail::is_trivially_destructible;
0051 using ::boost::move_detail::is_trivially_default_constructible;
0052 using ::boost::move_detail::is_trivially_copy_constructible;
0053 using ::boost::move_detail::is_trivially_move_constructible;
0054 using ::boost::move_detail::is_trivially_copy_assignable;
0055 using ::boost::move_detail::is_trivially_move_assignable;
0056 using ::boost::move_detail::is_nothrow_default_constructible;
0057 using ::boost::move_detail::is_nothrow_copy_constructible;
0058 using ::boost::move_detail::is_nothrow_move_constructible;
0059 using ::boost::move_detail::is_nothrow_copy_assignable;
0060 using ::boost::move_detail::is_nothrow_move_assignable;
0061 using ::boost::move_detail::is_nothrow_swappable;
0062 using ::boost::move_detail::alignment_of;
0063 using ::boost::move_detail::aligned_storage;
0064 using ::boost::move_detail::nat;
0065 using ::boost::move_detail::nat2;
0066 using ::boost::move_detail::nat3;
0067 using ::boost::move_detail::natN;
0068 using ::boost::move_detail::max_align_t;
0069 using ::boost::move_detail::is_convertible;
0070
0071 }
0072 }
0073 }
0074
0075 #endif