From 794c19b2a582d4acd72a334bb88c19a44161981f Mon Sep 17 00:00:00 2001 From: Robert Ramey Date: Mon, 27 Apr 2015 17:14:36 -0700 Subject: [PATCH] remove comment no longer relevant --- include/boost/serialization/vector.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/boost/serialization/vector.hpp b/include/boost/serialization/vector.hpp index 7f6a3916..a09e5c63 100644 --- a/include/boost/serialization/vector.hpp +++ b/include/boost/serialization/vector.hpp @@ -141,12 +141,6 @@ inline void load( if(boost::archive::library_version_type(3) < library_version){ ar >> BOOST_SERIALIZATION_NVP(item_version); } - // note: for some data types in certain compilers - // is_default_constructible returns the incorrect value. - // that is it may return true when in fact the type is - // not default constructable. In such cases, loading of a - // vector of such types will fail with a reference error - // message like "default const t.reserve(count); vector_load_impl::invoke(ar, t, count, item_version); }