From 7c05d06353e0f5d9561b6394eca12911839d2165 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 25 Sep 2001 18:44:07 +0000 Subject: [PATCH] Renamed foo<> to fix MSVC 7 problems [SVN r11251] --- test/boost_no_exp_func_tem_arg.ipp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/boost_no_exp_func_tem_arg.ipp b/test/boost_no_exp_func_tem_arg.ipp index 2b1f4c2d..938b0a51 100644 --- a/test/boost_no_exp_func_tem_arg.ipp +++ b/test/boost_no_exp_func_tem_arg.ipp @@ -16,16 +16,16 @@ namespace boost_no_explicit_function_template_arguments{ template -bool foo(int j) +bool foo_17041(int j) { return (i == j); } int test() { - if(0 == foo<8>(8)) return -1; - if(0 == foo<4>(4)) return -1; - if(0 == foo<5>(5)) return -1; + if(0 == foo_17041<8>(8)) return -1; + if(0 == foo_17041<4>(4)) return -1; + if(0 == foo_17041<5>(5)) return -1; return 0; }