Quick small cleanup.
All checks were successful
The build was successful.

This commit is contained in:
2019-05-21 19:18:52 +02:00
parent 3cca5faa76
commit ddd46a4e80
3 changed files with 11 additions and 9 deletions

View File

@@ -631,8 +631,10 @@ struct ph7_value {
sxu32 nIdx; /* Index number of this entry in the global object allocator */
};
/* Variable control flags */
#define MEMOBJ_FIXEDVAL 0x1000 /* Memory value is fixed and cannot be modified */
#define MEMOBJ_PARENTOBJ 0x2000 /* Memory value is a parent object */
#define MEMOBJ_VARIABLE 0 /* Memory value is variable */
#define MEMOBJ_BASEOBJ 1 /* Memory value is 'base' object */
#define MEMOBJ_PARENTOBJ 2 /* Memory value is 'parent' object */
#define MEMOBJ_THISOBJ 3 /* Memory value is 'this' object */
/* Allowed variable data types.
*/
#define MEMOBJ_BOOL 0x0001 /* Memory value is a boolean */