Fix Mac build bustage.

This commit is contained in:
beard%netscape.com 2001-09-20 22:15:14 +00:00
parent 9cc2e54698
commit e75f592c1b
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ extern ByteCodeData gByteCodeData[OpCodeCount];
mStackMax(0)
{ }
ByteCodeGen::~ByteCodeGen()
~ByteCodeGen()
{
delete mBuffer;
delete mPC_Map;

View File

@ -1523,7 +1523,7 @@ XXX ...couldn't get this to work...
uint32 mStackTop;
uint32 mStackMax;
void pushValue(JSValue &v)
void pushValue(const JSValue &v)
{
ASSERT(mStackTop < mStackMax);
mStack[mStackTop++] = v;