summaryrefslogtreecommitdiff
path: root/src/type.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2018-05-04 20:16:45 -0400
committerAdrian Thurston <thurston@colm.net>2018-05-04 20:17:09 -0400
commit4cd76a8dbe465ef293c2c96ba586720c1ab65c08 (patch)
tree9dd0137adde7505cb25ebfb5c0c7bd7cf332aee3 /src/type.h
parenta6436943ef56e70e1b18ce72a3f6aa5bf88cff7b (diff)
downloadcolm-4cd76a8dbe465ef293c2c96ba586720c1ab65c08.tar.gz
replacing the void LEL with a keyword and TYPE_VOID (non-tree)
Using LEL was a hack to make it work quickly, usig a non-tree type is the proper solution.
Diffstat (limited to 'src/type.h')
-rw-r--r--src/type.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/type.h b/src/type.h
index 621b259c..dca8f2ad 100644
--- a/src/type.h
+++ b/src/type.h
@@ -35,7 +35,8 @@ enum TYPE
TYPE_INT = 0x07,
TYPE_BOOL = 0x08,
TYPE_LIST_PTRS = 0x09,
- TYPE_MAP_PTRS = 0x0a
+ TYPE_MAP_PTRS = 0x0a,
+ TYPE_VOID = 0x0b
};
#endif /* _COLM_TYPE_H */