Class names should be case sensitive.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-28 18:24:22 +02:00
parent 58015f2a20
commit 8ab3919688
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -936,7 +936,7 @@ PH7_PRIVATE sxi32 PH7_VmInit(
SySetAlloc(&pVm->aLitObj, 0xFF); SySetAlloc(&pVm->aLitObj, 0xFF);
SyHashInit(&pVm->hHostFunction, &pVm->sAllocator, 0, 0); SyHashInit(&pVm->hHostFunction, &pVm->sAllocator, 0, 0);
SyHashInit(&pVm->hFunction, &pVm->sAllocator, 0, 0); SyHashInit(&pVm->hFunction, &pVm->sAllocator, 0, 0);
SyHashInit(&pVm->hClass, &pVm->sAllocator, SyStrHash, SyStrnmicmp); SyHashInit(&pVm->hClass, &pVm->sAllocator, SyStrHash, SyStrncmp);
SyHashInit(&pVm->hConstant, &pVm->sAllocator, 0, 0); SyHashInit(&pVm->hConstant, &pVm->sAllocator, 0, 0);
SyHashInit(&pVm->hSuper, &pVm->sAllocator, 0, 0); SyHashInit(&pVm->hSuper, &pVm->sAllocator, 0, 0);
SyHashInit(&pVm->hDBAL, &pVm->sAllocator, 0, 0); SyHashInit(&pVm->hDBAL, &pVm->sAllocator, 0, 0);