From 9195d87fbc3fcb270f417d53c5aedf0c7f0ebf3d Mon Sep 17 00:00:00 2001
From: Brad King <brad.king@kitware.com>
Date: Wed, 13 Apr 2005 15:29:22 -0400
Subject: [PATCH] BUG: allocator<>::rebind<> test should use
 kwsys_stl::allocator, not std::allocator.

---
 kwsysPlatformCxxTests.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kwsysPlatformCxxTests.cxx b/kwsysPlatformCxxTests.cxx
index f3814c0..5c1288e 100644
--- a/kwsysPlatformCxxTests.cxx
+++ b/kwsysPlatformCxxTests.cxx
@@ -117,7 +117,7 @@ void f(const T&, const Alloc&)
 };
 int main()
 {
-  f(0, std::allocator<char>());
+  f(0, kwsys_stl::allocator<char>());
   return 0;
 }
 #endif
-- 
GitLab