Skip to content

Commit

Permalink
style: pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Nov 14, 2024
1 parent 61df64f commit 7e2329d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/parsing/Lexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1277,8 +1277,8 @@ void Lexer::scanTranslateOffSection() {
while (!isNewline(peek()) && !reallyAtEnd())
advance();

std::string_view commentText = std::string_view(commentStart,
(size_t) (sourceBuffer - commentStart));
std::string_view commentText =
std::string_view(commentStart, (size_t)(sourceBuffer - commentStart));
if (detectTranslateOnOffPragma(commentText, false))
return;
}
Expand Down

0 comments on commit 7e2329d

Please sign in to comment.