summaryrefslogtreecommitdiff
path: root/boost/container/pmr/polymorphic_allocator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/pmr/polymorphic_allocator.hpp')
-rw-r--r--boost/container/pmr/polymorphic_allocator.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/container/pmr/polymorphic_allocator.hpp b/boost/container/pmr/polymorphic_allocator.hpp
index c446bc8d5b..8c04653213 100644
--- a/boost/container/pmr/polymorphic_allocator.hpp
+++ b/boost/container/pmr/polymorphic_allocator.hpp
@@ -104,7 +104,7 @@ class polymorphic_allocator
void construct(U* p, BOOST_FWD_REF(Args)...args)
{
new_allocator<U> na;
- container_detail::dispatch_uses_allocator
+ dtl::dispatch_uses_allocator
(na, *this, p, ::boost::forward<Args>(args)...);
}
@@ -117,7 +117,7 @@ class polymorphic_allocator
void construct(U* p BOOST_MOVE_I##N BOOST_MOVE_UREFQ##N)\
{\
new_allocator<U> na;\
- container_detail::dispatch_uses_allocator\
+ dtl::dispatch_uses_allocator\
(na, *this, p BOOST_MOVE_I##N BOOST_MOVE_FWDQ##N);\
}\
//