]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/interprocess/allocators/detail/adaptive_node_pool.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / interprocess / allocators / detail / adaptive_node_pool.hpp
index d2b0b366fcc235b48fea788db41fdc78b2d01d79..e9a8e2655cf79091f44cee80717ad6f390de42a5 100644 (file)
@@ -48,13 +48,13 @@ template< class SegmentManager
         , unsigned char OverheadPercent
         >
 class private_adaptive_node_pool
-   :  public boost::container::dtl::private_adaptive_node_pool_impl
+   :  public boost::container::dtl::private_adaptive_node_pool_impl_rt
          < typename SegmentManager::segment_manager_base_type
          , ::boost::container::adaptive_pool_flag::size_ordered |
            ::boost::container::adaptive_pool_flag::address_ordered
          >
 {
-   typedef boost::container::dtl::private_adaptive_node_pool_impl
+   typedef boost::container::dtl::private_adaptive_node_pool_impl_rt
       < typename SegmentManager::segment_manager_base_type
       , ::boost::container::adaptive_pool_flag::size_ordered |
         ::boost::container::adaptive_pool_flag::address_ordered
@@ -70,9 +70,6 @@ class private_adaptive_node_pool
 
    static const size_type nodes_per_block = NodesPerBlock;
 
-   //Deprecated, use node_per_block
-   static const size_type nodes_per_chunk = NodesPerBlock;
-
    //!Constructor from a segment manager. Never throws
    private_adaptive_node_pool(segment_manager *segment_mngr)
       :  base_t(segment_mngr, NodeSize, NodesPerBlock, MaxFreeBlocks, OverheadPercent)