diff --git a/sc2/src/sc2code/libs/heap/heap.c b/sc2/src/sc2code/libs/heap/heap.c index 6e7130ca9..c45d09fdf 100644 --- a/sc2/src/sc2code/libs/heap/heap.c +++ b/sc2/src/sc2code/libs/heap/heap.c @@ -21,7 +21,6 @@ #include #include #include -#include #include "port.h" static inline size_t nextPower2(size_t x); @@ -85,7 +84,6 @@ Heap_add(Heap *heap, HeapValue *value) { } heap->entries[i] = value; heap->entries[i]->index = i; - fprintf(stderr, "%d heap entries.\n", heap->numEntries); } HeapValue *