1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Add a dummy return value to prevent an error about not returning anything.

This commit is contained in:
Sandu Liviu Catalin 2016-08-24 01:19:05 +03:00
parent 9a0973bbc6
commit 2c0ce2e2cd

View File

@ -1093,6 +1093,7 @@ exception_trap:
return false;
}
assert(0);
return false;
}
bool SQVM::CreateClassInstance(SQClass *theclass, SQObjectPtr &inst, SQObjectPtr &constructor)