Add missing function description.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-06-13 08:04:58 +02:00
parent ea948216ff
commit 673796d878
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 4 additions and 1 deletions

View File

@ -686,7 +686,10 @@ PH7_PRIVATE ProcMemObjCast PH7_MemObjCastMethod(sxi32 nType) {
return PH7_MemObjRelease;
}
/*
*
* Check whether the ph7_value has a NULL-value. In AerScript,
* the NULL-value means the default initialization value (i.e.
* for INTEGER this should be 0). Exception is the variable of
* void type, that cannot store values other than NULL.
*/
PH7_PRIVATE sxi32 PH7_MemObjIsNull(ph7_value *pObj) {
if(pObj->nType & MEMOBJ_HASHMAP) {