Oops... removing debug messages.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2453 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2006-10-23 00:08:35 +00:00
parent fb54ca7b54
commit 07b98a4c5d
-2
View File
@@ -21,7 +21,6 @@
#include <assert.h> #include <assert.h>
#include <math.h> #include <math.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h>
#include "port.h" #include "port.h"
static inline size_t nextPower2(size_t x); 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] = value;
heap->entries[i]->index = i; heap->entries[i]->index = i;
fprintf(stderr, "%d heap entries.\n", heap->numEntries);
} }
HeapValue * HeapValue *