Fixed broken testcases that came from tutorial sample code

[SVN r16935]
This commit is contained in:
Douglas Gregor
2003-01-19 14:44:34 +00:00
parent 4a46b5e1b9
commit 09657f1134
12 changed files with 26 additions and 25 deletions

View File

@ -22,7 +22,7 @@ int test_main(int, char*[])
function <unsigned(double)> f2 = bind(f1, false, _1);
function <unsigned()> f3 = bind(f2, 4.0);
unsigned result = f3();
f3();
return 0;
}