Index: vector.hpp =================================================================== --- vector.hpp (revision 64061) +++ vector.hpp (working copy) @@ -814,8 +814,11 @@ bounded_vector (): vector_type (N) {} BOOST_UBLAS_INLINE - bounded_vector (size_type size): + explicit bounded_vector (size_type size): vector_type (size) {} + bounded_vector (size_type size, const value_type &value): + vector_type (size) + {std::fill(begin(), end(), value);} //Fills with the value BOOST_UBLAS_INLINE bounded_vector (const bounded_vector &v): vector_type (v) {}