Added explicit qualifiers to mem_fun calls, as workaround for broken std libs that don't put code in namespace std.

[SVN r11624]
This commit is contained in:
John Maddock
2001-11-07 12:36:55 +00:00
parent 817241d9c9
commit cdb0120c91

View File

@ -80,8 +80,8 @@ public:
int test() int test()
{ {
mem_fun(&tester::foo1); boost_no_pointer_to_member_const::mem_fun(&tester::foo1);
mem_fun(&tester::foo2); boost_no_pointer_to_member_const::mem_fun(&tester::foo2);
return 0; return 0;
} }