aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse.h
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2023-05-28 12:21:34 +0200
committerlemon <lsof@mailbox.org>2023-05-28 12:34:08 +0200
commit784cda65436627e8b44ea02e4266a1b91ecb3ca8 (patch)
treed1b4c5c00a5482dea8abc3c2484ab18947425865 /parse.h
parent9c440c027913a7e8f1a417bd93d98628e8f85df4 (diff)
more memory efficient symbol tables
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/parse.h b/parse.h
index d6da83f..520a76e 100644
--- a/parse.h
+++ b/parse.h
@@ -177,19 +177,6 @@ struct decl {
int id;
};
-struct env {
- struct env *up;
- struct decls {
- struct decls *prev;
- struct decl decl;
- } *decls;
- struct tagged {
- struct tagged *prev;
- struct span span;
- union type t;
- } *tagged;
-};
-
enum evalmode {
EVINTCONST,
EVARITH,