More refactoring around extern variables

This commit is contained in:
Rangi42
2025-07-21 19:22:10 -04:00
parent d1493a9f96
commit 5f333d9753
8 changed files with 22 additions and 34 deletions

View File

@@ -501,8 +501,7 @@ LexerState::~LexerState() {
bool Expansion::advance() {
assume(offset <= size());
++offset;
return offset > size();
return ++offset > size();
}
BufferedContent::~BufferedContent() {