core: parser: Remove debug lines

Signed-off-by: Chloe M. <chloe@mirocom.org>
This commit is contained in:
2026-05-23 19:23:39 -04:00
parent 8483d3c445
commit d4c22f218d
-3
View File
@@ -29,8 +29,6 @@ tokbuf_init(struct tokbuf *tokbuf)
return 0; return 0;
} }
#include <stdio.h>
int int
tokbuf_push(struct tokbuf *tokbuf, struct token *tok) tokbuf_push(struct tokbuf *tokbuf, struct token *tok)
{ {
@@ -52,7 +50,6 @@ tokbuf_push(struct tokbuf *tokbuf, struct token *tok)
tokbuf->cap = newcap; tokbuf->cap = newcap;
} }
printf("%d %d\n", tokbuf->head, tok->type);
tokbuf->buf[tokbuf->head++] = *tok; tokbuf->buf[tokbuf->head++] = *tok;
return 0; return 0;
} }