Commit e1f3ce0d by François Dumont Committed by Paolo Carlini

testsuite_allocator.h (tracker_allocator_counter:: allocate): Update allocation…

testsuite_allocator.h (tracker_allocator_counter:: allocate): Update allocation count only if allocation succeeded.

2011-09-02  François Dumont  <fdumont@gcc.gnu.org>

	* testsuite/util/testsuite_allocator.h (tracker_allocator_counter::
	allocate): Update allocation count only if allocation succeeded.

From-SVN: r178486
parent d7da5cc8
2011-09-02 François Dumont <fdumont@gcc.gnu.org>
* testsuite/util/testsuite_allocator.h (tracker_allocator_counter::
allocate): Update allocation count only if allocation succeeded.
2011-09-02 Paolo Carlini <paolo.carlini@oracle.com>
* include/std/bitset: Trivial formatting fixes.
......
......@@ -41,8 +41,9 @@ namespace __gnu_test
static void*
allocate(size_type blocksize)
{
void* p = ::operator new(blocksize);
allocationCount_ += blocksize;
return ::operator new(blocksize);
return p;
}
static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment