2005-12-28 Chris Jefferson <chris@bubblescope.net>
* testsuite/testsuite_allocator.h (check_deallocate_null): Return true.
From-SVN: r109104
+2005-12-28 Chris Jefferson <chris@bubblescope.net>
+
+ * testsuite/testsuite_allocator.h (check_deallocate_null): Return true.
+
2005-12-28 Paolo Carlini <pcarlini@suse.de>
* include/std/std_bitset.h (bitset<>::_M_copy_from_string,
}
template<typename Alloc>
- void
+ bool
check_deallocate_null()
{
// Let's not core here...
Alloc a;
a.deallocate(NULL, 1);
a.deallocate(NULL, 10);
+ return true;
}
template<typename Alloc>