summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/kwsysPlatformCxxTests.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-04-13 19:29:22 (GMT)
committerBrad King <brad.king@kitware.com>2005-04-13 19:29:22 (GMT)
commit551b28d501058c3437b0c8d962e1662ccdbef392 (patch)
tree0399ca186b7197e69b2364833916278f00ab3015 /Source/kwsys/kwsysPlatformCxxTests.cxx
parent5bebcea6e74c932856510bfe054aceee1ebb8f9b (diff)
downloadCMake-551b28d501058c3437b0c8d962e1662ccdbef392.zip
CMake-551b28d501058c3437b0c8d962e1662ccdbef392.tar.gz
CMake-551b28d501058c3437b0c8d962e1662ccdbef392.tar.bz2
BUG: allocator<>::rebind<> test should use kwsys_stl::allocator, not std::allocator.
Diffstat (limited to 'Source/kwsys/kwsysPlatformCxxTests.cxx')
-rw-r--r--Source/kwsys/kwsysPlatformCxxTests.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/kwsysPlatformCxxTests.cxx b/Source/kwsys/kwsysPlatformCxxTests.cxx
index f3814c0..5c1288e 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<char>());
+ f(0, kwsys_stl::allocator<char>());
return 0;
}
#endif