From 551b28d501058c3437b0c8d962e1662ccdbef392 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 13 Apr 2005 15:29:22 -0400 Subject: [PATCH] BUG: allocator<>::rebind<> test should use kwsys_stl::allocator, not std::allocator. --- Source/kwsys/kwsysPlatformCxxTests.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/kwsysPlatformCxxTests.cxx b/Source/kwsys/kwsysPlatformCxxTests.cxx index f3814c0b3..5c1288ed4 100644 --- a/Source/kwsys/kwsysPlatformCxxTests.cxx +++ b/Source/kwsys/kwsysPlatformCxxTests.cxx @@ -117,7 +117,7 @@ void f(const T&, const Alloc&) }; int main() { - f(0, std::allocator()); + f(0, kwsys_stl::allocator()); return 0; } #endif