Split Utility/IdentityType and Functional/OverloadedFunction tests into smaller tests.

Updated docs for ScopeExit, LocalFunction, Utility/IdentityType, and Functional/OverloadedFunction.

[SVN r77484]
This commit is contained in:
Lorenzo Caminiti
2012-03-22 20:54:20 +00:00
parent 0bae08f783
commit 96d30479a9
21 changed files with 201 additions and 44 deletions

View File

@@ -25,7 +25,7 @@ BOOST_AUTO_TEST_CASE( test_add_lambda )
int nums[] = {2, 3};
std::for_each(nums, nums + 2, add); // Pass it to an algorithm.
BOOST_CHECK( sum == 60 ); // Assert final summation value.
BOOST_CHECK(sum == 60); // Assert final summation value.
}
//]