Suppress what is apparently an intentional memory leak
This commit is contained in:
parent
a8cdcff0c2
commit
fe6f2f59e0
|
@ -335,8 +335,7 @@ void fastAllocTest() {
|
||||||
}
|
}
|
||||||
|
|
||||||
t = timer();
|
t = timer();
|
||||||
for(int i=0; i<1000000; i++)
|
for (int i = 0; i < 1000000; i++) (void)FastAllocator<64>::allocate();
|
||||||
FastAllocator<64>::allocate();
|
|
||||||
t = timer()-t;
|
t = timer()-t;
|
||||||
cout << "Allocations: " << (1/t) << "M/sec" << endl;
|
cout << "Allocations: " << (1/t) << "M/sec" << endl;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue