id summary reporter owner description type status milestone component version severity resolution keywords cc 8580 boost.serialization documentation missing void Mateusz Niemojewski Robert Ramey "In latest boost.serialization documentation: in first example of: https://svn.boost.org/svn/boost/trunk/libs/serialization/doc/archive_reference.html There is: {{{ ////////////////////////////////////////////////////////// // public interface used by programs that use the // serialization library typedef boost::mpl::bool_ is_saving; typedef boost::mpl::bool_ is_loading; template register_type(){} template trivial_oarchive & operator<<(const T & t){ return *this; }}} There should be (only '''void''' added): {{{ ////////////////////////////////////////////////////////// // public interface used by programs that use the // serialization library typedef boost::mpl::bool_ is_saving; typedef boost::mpl::bool_ is_loading; template void register_type(){} template trivial_oarchive & operator<<(const T & t){ return *this; }}} " Patches closed To Be Determined serialization Boost Development Trunk Problem fixed