summaryrefslogtreecommitdiff
path: root/boost/container/allocator_traits.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/allocator_traits.hpp')
-rw-r--r--boost/container/allocator_traits.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/container/allocator_traits.hpp b/boost/container/allocator_traits.hpp
index 2c7900ea72..b515af6180 100644
--- a/boost/container/allocator_traits.hpp
+++ b/boost/container/allocator_traits.hpp
@@ -445,7 +445,7 @@ struct allocator_traits
template<class T>
static void priv_construct(container_detail::false_type, Allocator &, T *p, const ::boost::container::default_init_t&)
- { ::new((void*)p) T; }
+ { ::new((void*)p, boost_container_new_t()) T; }
static bool priv_storage_is_unpropagable(container_detail::true_type, const Allocator &a, pointer p)
{ return a.storage_is_unpropagable(p); }