+++ boost/container/detail/static_vector_util.hpp Cz sty 31 12:36:08 2013 @@ -516,6 +516,14 @@ new (static_cast(boost::addressof(*pos))) V(p); // may throw } +template +inline +void construct(I pos) +{ + typedef typename boost::iterator_value::type V; + new (static_cast(boost::addressof(*pos))) V(); // may throw +} + template inline void construct(I pos, P const& p)