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

@ -4,7 +4,7 @@
#include <iostream>
struct stateful_type { int operator(int) const { return 0; } };
struct stateful_type { int operator()(int) const { return 0; } };
int main()
{
@ -16,4 +16,3 @@ int main()
boost::function1<int, int> f2(f);
}