Remove calls to dump_l.

This fails to compile without NDEBUG and the log statement is accomplishing the
same thing.
This commit is contained in:
Patrick Scott 2009-10-29 08:35:22 -04:00
parent 2e01134db8
commit 4705b7db85

View File

@ -153,11 +153,6 @@ SimpleBestFitAllocator::chunk_t* SimpleBestFitAllocator::dealloc(size_t start)
cur = n;
} while (cur && cur->free);
#ifndef NDEBUG
if (!freed->free) {
dump_l("dealloc (!freed->free)");
}
#endif
LOG_FATAL_IF(!freed->free,
"freed block at offset 0x%08lX of size 0x%08lX is not free!",
freed->start * kMemoryAlign, freed->size * kMemoryAlign);