Remove unused function argument.
All checks were successful
The build was successful.

This commit is contained in:
2019-06-05 17:30:17 +02:00
parent 075f707a0a
commit 5948c3a5b6
3 changed files with 17 additions and 19 deletions

View File

@@ -612,7 +612,7 @@ PH7_PRIVATE sxi32 PH7_MemObjToObject(ph7_value *pObj) {
/* Point to the underlying VM */
pVm = pObj->pVm;
/* Point to the stdClass() */
pClass = PH7_VmExtractClass(pVm, "stdClass", sizeof("stdClass") - 1, 0, 0);
pClass = PH7_VmExtractClass(pVm, "stdClass", sizeof("stdClass") - 1, TRUE);
if(pClass == 0) {
/* Can't happen,load null instead */
PH7_MemObjRelease(pObj);