From 784cda65436627e8b44ea02e4266a1b91ecb3ca8 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 28 May 2023 12:21:34 +0200 Subject: more memory efficient symbol tables --- parse.h | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'parse.h') 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, -- cgit v1.2.3