From cdb0120c91f083263086297a6d23cb4f6927421c Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 7 Nov 2001 12:36:55 +0000 Subject: [PATCH] Added explicit qualifiers to mem_fun calls, as workaround for broken std libs that don't put code in namespace std. [SVN r11624] --- test/boost_no_ptr_mem_const.ipp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/boost_no_ptr_mem_const.ipp b/test/boost_no_ptr_mem_const.ipp index a95dced7..da5eefb3 100644 --- a/test/boost_no_ptr_mem_const.ipp +++ b/test/boost_no_ptr_mem_const.ipp @@ -80,8 +80,8 @@ public: int test() { - mem_fun(&tester::foo1); - mem_fun(&tester::foo2); + boost_no_pointer_to_member_const::mem_fun(&tester::foo1); + boost_no_pointer_to_member_const::mem_fun(&tester::foo2); return 0; }