BUG: allocator<>::rebind<> test should use kwsys_stl::allocator, not std::allocator.

This commit is contained in:
Brad King 2005-04-13 15:29:22 -04:00
parent 5bebcea6e7
commit 551b28d501
1 changed files with 1 additions and 1 deletions

View File

@ -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