forked from boostorg/function
Fixed broken testcases that came from tutorial sample code
[SVN r16935]
This commit is contained in:
@ -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);
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user