associative forward iterators in example and docs

[SVN r58549]
This commit is contained in:
Christopher Schmidt
2009-12-28 17:45:42 +00:00
parent f0cd405f04
commit 514d48903b
234 changed files with 1508 additions and 1328 deletions

View File

@ -56,6 +56,9 @@ int main()
BOOST_MPL_ASSERT((boost::is_same<result_of::value_at_key<example::example_struct, fields::name>::type, std::string>));
BOOST_MPL_ASSERT((boost::is_same<result_of::value_at_key<example::example_struct, fields::age>::type, int>));
BOOST_TEST(deref_data(begin(bert)) == "bert");
BOOST_TEST(deref_data(next(begin(bert))) == 99);
BOOST_TEST(size(bert) == 2);
return boost::report_errors();