diff --git a/test/boost_no_std_allocator.ipp b/test/boost_no_std_allocator.ipp index 0ef65f81..a18dc474 100644 --- a/test/boost_no_std_allocator.ipp +++ b/test/boost_no_std_allocator.ipp @@ -17,7 +17,7 @@ namespace boost_no_std_allocator{ template -int foo(const T& i) +int test_allocator(const T& i) { typedef std::allocator alloc1_t; typedef typename alloc1_t::size_type size_type; @@ -57,7 +57,7 @@ int foo(const T& i) int test() { - return foo(0); + return test_allocator(0); } }