summaryrefslogtreecommitdiff
path: root/boost/interprocess/allocators/detail/adaptive_node_pool.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/interprocess/allocators/detail/adaptive_node_pool.hpp')
-rw-r--r--boost/interprocess/allocators/detail/adaptive_node_pool.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/boost/interprocess/allocators/detail/adaptive_node_pool.hpp b/boost/interprocess/allocators/detail/adaptive_node_pool.hpp
index d2b0b366fc..e9a8e2655c 100644
--- a/boost/interprocess/allocators/detail/adaptive_node_pool.hpp
+++ b/boost/interprocess/allocators/detail/adaptive_node_pool.hpp
@@ -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)