fix build breakage in heapdump.cpp

This commit is contained in:
Joel Dice 2008-12-02 19:38:32 -07:00
parent 4ec853d1bc
commit bcfdc03631

View File

@ -8,6 +8,7 @@
There is NO WARRANTY for this software. See license.txt for There is NO WARRANTY for this software. See license.txt for
details. */ details. */
#include "machine.h"
#include "heapwalk.h" #include "heapwalk.h"
using namespace vm; using namespace vm;
@ -91,7 +92,7 @@ dumpHeap(Thread* t, FILE* out)
write4(out, number); write4(out, number);
} }
virtual void push(unsigned) { virtual void push(object, unsigned, unsigned) {
write1(out, Push); write1(out, Push);
} }