renamed vars to slot in stix_class_t

This commit is contained in:
hyunghwan.chung
2015-06-03 17:27:22 +00:00
parent dab7285c45
commit 3added1316
3 changed files with 4 additions and 4 deletions

View File

@ -523,7 +523,7 @@ struct stix_class_t
stix_oop_set_t classmths; /* class methods, MethodDictionary */
/* indexed part afterwards */
stix_oop_t vars[1]; /* class instance variables and class variables. */
stix_oop_t slot[1]; /* class instance variables and class variables. */
};
typedef struct stix_class_t stix_class_t;
typedef struct stix_class_t* stix_oop_class_t;