summaryrefslogtreecommitdiff
path: root/boost/container/detail/construct_in_place.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/detail/construct_in_place.hpp')
-rw-r--r--boost/container/detail/construct_in_place.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/container/detail/construct_in_place.hpp b/boost/container/detail/construct_in_place.hpp
index 9fecd24a8f..b131f06a86 100644
--- a/boost/container/detail/construct_in_place.hpp
+++ b/boost/container/detail/construct_in_place.hpp
@@ -67,7 +67,7 @@ BOOST_CONTAINER_FORCEINLINE void assign_in_place(DstIt dest, InpIt source)
template<class DstIt, class U, class D>
BOOST_CONTAINER_FORCEINLINE void assign_in_place(DstIt dest, value_init_construct_iterator<U, D>)
{
- container_detail::value_init<U> val;
+ dtl::value_init<U> val;
*dest = boost::move(val.get());
}