There will be no PDO. P# will contain DBAL

This commit is contained in:
2018-07-12 18:21:14 +02:00
parent 0552e388e7
commit 5d1e75d72c
2 changed files with 2 additions and 2 deletions

2
vm.c
View File

@@ -1232,7 +1232,7 @@ PH7_PRIVATE sxi32 PH7_VmInit(
SyHashInit(&pVm->hClass, &pVm->sAllocator, SyStrHash, SyStrnmicmp);
SyHashInit(&pVm->hConstant, &pVm->sAllocator, 0, 0);
SyHashInit(&pVm->hSuper, &pVm->sAllocator, 0, 0);
SyHashInit(&pVm->hPDO, &pVm->sAllocator, 0, 0);
SyHashInit(&pVm->hDBAL, &pVm->sAllocator, 0, 0);
SySetInit(&pVm->aFreeObj, &pVm->sAllocator, sizeof(VmSlot));
SySetInit(&pVm->aSelf, &pVm->sAllocator, sizeof(ph7_class *));
SySetInit(&pVm->aShutdown, &pVm->sAllocator, sizeof(VmShutdownCB));