Remove debug printing

This commit is contained in:
Léa Saviot
2018-06-22 15:16:48 +02:00
parent 6f598acc10
commit d7ea9f3bf7
6 changed files with 2 additions and 32 deletions

View File

@@ -19,7 +19,6 @@ void TreePool::dealloc(void * ptr) {
assert(ptr >= m_buffer && ptr < m_cursor);
TreeNode * node = reinterpret_cast<TreeNode *>(ptr);
size_t size = node->size();
printf("Dealloc %d(%p) of size %zu\n", node->m_identifier, node, size);
// Step 1 - Compact the pool
memmove(
@@ -133,7 +132,7 @@ void TreePool::log() {
}
printf("|\n");
logNodeForIdentifierArray();
//logNodeForIdentifierArray();
}
#endif