Full merge from trunk at revision 41356 of entire boost-root tree. Do Serialization separately to verify pre-commit check failures have been fixed.

[SVN r41368]
This commit is contained in:
Beman Dawes
2007-11-25 17:57:08 +00:00
parent e36c2be66f
commit 36694aec8f
193 changed files with 11665 additions and 12617 deletions

View File

@@ -74,13 +74,11 @@ void out(const char *testfile, const A & a, const B & b)
oa << BOOST_SERIALIZATION_NVP(a);
oa << BOOST_SERIALIZATION_NVP(a);
BOOST_CHECK(a.count == 2); // no tracking => redundant saves
BOOST_MESSAGE( "a.count=" << a.count );
std::cout << "a.count=" << a.count << '\n' ;
oa << BOOST_SERIALIZATION_NVP(b);
oa << BOOST_SERIALIZATION_NVP(b);
BOOST_CHECK(b.count == 1); // tracking => no redundant saves
std::cout << "b.count=" << b.count << '\n' ;
BOOST_MESSAGE( "b.count=" << b.count );
}