From bcfdc03631211c83d54027cb9804f8e1c095c8c6 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 2 Dec 2008 19:38:32 -0700 Subject: [PATCH] fix build breakage in heapdump.cpp --- src/heapdump.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/heapdump.cpp b/src/heapdump.cpp index b58fcceb56..8d4654fc55 100644 --- a/src/heapdump.cpp +++ b/src/heapdump.cpp @@ -8,6 +8,7 @@ There is NO WARRANTY for this software. See license.txt for details. */ +#include "machine.h" #include "heapwalk.h" using namespace vm; @@ -91,7 +92,7 @@ dumpHeap(Thread* t, FILE* out) write4(out, number); } - virtual void push(unsigned) { + virtual void push(object, unsigned, unsigned) { write1(out, Push); }