id summary reporter owner description type status milestone component version severity resolution keywords cc 11612 serializing vector thetetrismaster@… Robert Ramey "In when dispatching to the default load method and detail::is_default_constructible fails, should the vector be cleared if it is not empty? line 98 reserves capacity for the vector and line 102 pushes new elements into the vector. so if the vector is loaded multiple times its size will grow. if you try to load a vector starting with a vector that is not empty, the vector size will grow. should you do the following check: if(!t.empty()) t.clear(); t.reserve(count);" Bugs closed To Be Determined serialization Boost 1.58.0 Problem invalid vector