summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-10-06 05:06:16 -0400
committerLLLL Colonq <llll@colonq>2025-10-06 05:06:41 -0400
commit09435bffe025a96e0d9c3b44ee9c505973b383bd (patch)
treed352772edc096a374d42c50ffa4a7b2b8dad59dd /src/parser.h
parent063ab38ce78c370c698e5d148bb9f993ee731ddb (diff)
Cleanup, fix bugs
Ensure everything builds on C89
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h
index bcd5458..08c0bee 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -7,7 +7,7 @@
typedef struct {
pit_lex_token token;
i64 start, end;
- i64 line, column; // for error reporting
+ i64 line, column; /* for error reporting */
} pit_parser_token_info;
typedef struct {