The empty() function is useless in Aer.
All checks were successful
The build was successful.

This commit is contained in:
2019-03-24 09:22:10 +01:00
parent 9438407ebf
commit a87471e1e3
7 changed files with 3 additions and 78 deletions

View File

@@ -1964,13 +1964,4 @@ int ph7_value_is_object(ph7_value *pVal) {
*/
int ph7_value_is_resource(ph7_value *pVal) {
return (pVal->iFlags & MEMOBJ_RES) ? TRUE : FALSE;
}
/*
* [CAPIREF: ph7_value_is_empty()]
* Please refer to the official documentation for function purpose and expected parameters.
*/
int ph7_value_is_empty(ph7_value *pVal) {
int rc;
rc = PH7_MemObjIsEmpty(pVal);
return rc;
}
}