mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Fix Mac build bustage.
This commit is contained in:
parent
9cc2e54698
commit
e75f592c1b
@ -258,7 +258,7 @@ extern ByteCodeData gByteCodeData[OpCodeCount];
|
||||
mStackMax(0)
|
||||
{ }
|
||||
|
||||
ByteCodeGen::~ByteCodeGen()
|
||||
~ByteCodeGen()
|
||||
{
|
||||
delete mBuffer;
|
||||
delete mPC_Map;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user