summaryrefslogtreecommitdiffstats
path: root/obj-types.h
diff options
context:
space:
mode:
Diffstat (limited to 'obj-types.h')
-rw-r--r--obj-types.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/obj-types.h b/obj-types.h
index 577b93f2..79781e44 100644
--- a/obj-types.h
+++ b/obj-types.h
@@ -58,10 +58,11 @@ typedef enum { /* IDs of known object "types/classes" */
OBJvmop = 9,
OBJvmprg = 10,
OBJvm = 11,
- OBJvmstk = 12,
- OBJexpr = 13 /* remeber to UPDATE OBJ_NUM_IDS (below) if you add one! */
+ OBJsysvar = 12,
+ OBJvmstk = 13,
+ OBJexpr = 14 /* remeber to UPDATE OBJ_NUM_IDS (below) if you add one! */
} objID_t;
-#define OBJ_NUM_IDS 14
+#define OBJ_NUM_IDS 15
typedef enum { /* IDs of base methods supported by all objects - used for jump table, so
* they must start at zero and be incremented. -- rgerahrds, 2008-01-04