diff options
author | Marvin Borner | 2023-02-20 16:43:54 +0100 |
---|---|---|
committer | Marvin Borner | 2023-02-20 16:44:34 +0100 |
commit | 71c96b0ecd2f515fc5cfe545f6f7ed5ea40d9469 (patch) | |
tree | 71a7ad3d2b10d126afabefac183e48ae081e12f8 /src/parse.c | |
parent | a162fdc74abf0686ec06e65e06d67a8ce5c13b30 (diff) |
Seems to work
WHY WAS THIS SO EASY?! I spent basically the entire last week trying to
build a reference based garbage collector wtf fuck that
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parse.c b/src/parse.c index 9408bde..33ca556 100644 --- a/src/parse.c +++ b/src/parse.c @@ -5,7 +5,6 @@ #include <stdio.h> #include <parse.h> -#include <gc.h> #include <term.h> static struct term *rec(const char **term) @@ -36,7 +35,7 @@ static struct term *rec(const char **term) struct term *parse(const char *term) { - struct term *parsed = gc_make_static(&gc, rec(&term)); + struct term *parsed = rec(&term); to_barendregt(parsed); return parsed; } |