summaryrefslogtreecommitdiffstats
path: root/obj-types.h
diff options
context:
space:
mode:
Diffstat (limited to 'obj-types.h')
-rw-r--r--obj-types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/obj-types.h b/obj-types.h
index e712f5fd..e3f33a4c 100644
--- a/obj-types.h
+++ b/obj-types.h
@@ -58,9 +58,9 @@ typedef enum { /* IDs of known object "types/classes" */
OBJNull = 0, /* no valid object (we do not start at zero so we can detect calloc()) */
OBJMsg = 1,
OBJstrm = 2,
- OBJqueue = 3
+ OBJqueue = 3 /* remeber to UPDATE OBJ_NUM_IDS (below) if you add one! */
} objID_t;
-#define OBJ_NUM_IDS 3
+#define OBJ_NUM_IDS 4
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