Remove colNo column tracking from lexer

This was added as part of 71f88717 just for debug and fstack trace
output, but we no longer output it anyway.
This commit is contained in:
Rangi42
2025-01-28 01:12:18 -05:00
parent e49291b7cf
commit d54619a453
2 changed files with 1 additions and 15 deletions

View File

@@ -83,7 +83,6 @@ struct LexerState {
LexerMode mode;
bool atLineStart;
uint32_t lineNo;
uint32_t colNo;
int lastToken;
std::deque<IfStackEntry> ifStack;
@@ -147,7 +146,6 @@ void lexer_ReachELSEBlock();
void lexer_CheckRecursionDepth();
uint32_t lexer_GetLineNo();
uint32_t lexer_GetColNo();
void lexer_DumpStringExpansions();
struct Capture {