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; }