- fixed two apparently bogus asserts with returning gloating point constants.

This commit is contained in:
Christoph Oelckers 2016-11-30 19:22:56 +01:00
commit 1895feb185
2 changed files with 3 additions and 3 deletions

View file

@ -422,7 +422,7 @@ VMFrame *VMFrameStack::PopFrame()
int VMFrameStack::Call(VMFunction *func, VMValue *params, int numparams, VMReturn *results, int numresults, VMException **trap)
{
assert(this == VMGlobalStack); // why would anyone even want to create a local stack?
assert(this == &GlobalVMStack); // why would anyone even want to create a local stack?
bool allocated = false;
try
{