Reworked all LocalFunction tests and examples to use Boost.Detail/LightweightTest (instead of Boost.Test) and test sequence syntax without variadic macros (..._nova tests).

[SVN r77747]
This commit is contained in:
Lorenzo Caminiti
2012-04-03 19:40:20 +00:00
parent d89c4fbde0
commit 5c0948bf6e
112 changed files with 828 additions and 612 deletions

View File

@@ -19,7 +19,7 @@ int main() {
n x(-1);
void BOOST_LOCAL_FUNCTION(const bind& x) { // OK: No copy
assert( x.i == -1 ); // and constant.
assert(x.i == -1); // and constant.
} BOOST_LOCAL_FUNCTION_NAME(f)
f();