mighty

The mighty programming language, compiler and tools (WIP)
Log | Files | Refs

commit 9b3fef8bb151b5fba358db879c8cb9aad7dc1703
parent 908cf8e1d938159a8f0c4b5e01213d797f5cfbd2
Author: citbl <citbl@citbl.org>
Date:   Thu, 21 May 2026 21:26:36 +1000

clean up

Diffstat:
Mmtcc/src/lexer.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/mtcc/src/lexer.c b/mtcc/src/lexer.c @@ -212,8 +212,6 @@ print_tokens(struct lexer *lexer) { static enum token_type compare_span_to_token(struct lexer *lexer, struct span ident, size_t len) { enum token_type t = TOKEN_IDENT; - char c; - size_t i; if (ident.start >= lexer->src_len || ident.stop >= lexer->src_len) return t;