From 2069d5ad13781bf6916c3772250e850ba24cd3f7 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 19 Oct 2001 11:37:52 +0000 Subject: [PATCH] renamed test procedure to avoid conflict with C++ Builder [SVN r11406] --- test/boost_no_std_allocator.ipp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }