From d90018ed10267dbf1f4c6f746b9f70460e1424a6 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Tue, 12 Oct 2021 14:54:22 +0200 Subject: Add Object struct and constructor functions --- src/bootstrap/lexer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/bootstrap/lexer.c') diff --git a/src/bootstrap/lexer.c b/src/bootstrap/lexer.c index 49431d0..72df1ee 100644 --- a/src/bootstrap/lexer.c +++ b/src/bootstrap/lexer.c @@ -215,10 +215,10 @@ tokenize(const StringView *sv) { } if (!found) { error_push((Error){ - .type = ERR_TYPE_LEXER, - .value = ERR_UNMATCHED_STRING, - .line = line, - .col = col, + .type = ERR_TYPE_LEXER, + .value = ERR_UNMATCHED_STRING, + .line = line, + .col = col, }); return tokens; } -- cgit v1.2.1