summaryrefslogtreecommitdiff
path: root/boost/container/detail/pool_common_alloc.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/detail/pool_common_alloc.hpp')
-rw-r--r--boost/container/detail/pool_common_alloc.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/boost/container/detail/pool_common_alloc.hpp b/boost/container/detail/pool_common_alloc.hpp
index 3a3c80a78f..bfb82f5561 100644
--- a/boost/container/detail/pool_common_alloc.hpp
+++ b/boost/container/detail/pool_common_alloc.hpp
@@ -30,10 +30,10 @@
namespace boost{
namespace container{
-namespace container_detail{
+namespace dtl{
struct node_slist_helper
- : public boost::container::container_detail::node_slist<void*>
+ : public boost::container::dtl::node_slist<void*>
{};
struct fake_segment_manager
@@ -41,7 +41,7 @@ struct fake_segment_manager
typedef void * void_pointer;
static const std::size_t PayloadPerAllocation = BOOST_CONTAINER_ALLOCATION_PAYLOAD;
- typedef boost::container::container_detail::
+ typedef boost::container::dtl::
basic_multiallocation_chain<void*> multiallocation_chain;
static void deallocate(void_pointer p)
{ dlmalloc_free(p); }
@@ -77,23 +77,23 @@ struct fake_segment_manager
} //namespace boost{
} //namespace container{
-} //namespace container_detail{
+} //namespace dtl{
namespace boost {
namespace container {
-namespace container_detail {
+namespace dtl {
template<class T>
struct is_stateless_segment_manager;
template<>
struct is_stateless_segment_manager
- <boost::container::container_detail::fake_segment_manager>
+ <boost::container::dtl::fake_segment_manager>
{
static const bool value = true;
};
-} //namespace container_detail {
+} //namespace dtl {
} //namespace container {
} //namespace boost {