From 8bc300b19b3234e960a658605682031547cdeee8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 12:37:33 +0000 Subject: [PATCH] style: pre-commit fixes --- source/parsing/Lexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/parsing/Lexer.cpp b/source/parsing/Lexer.cpp index 614566c85..52361061f 100644 --- a/source/parsing/Lexer.cpp +++ b/source/parsing/Lexer.cpp @@ -1245,7 +1245,7 @@ bool detectTranslateOnOffPragma(std::string_view view, bool offMode) { p++; } - if (cpos == (int) clower->length()) { + if (cpos == (int)clower->length()) { // We have a complete match, check the comment line // ends there or the match is followed by a whitespace if (p == end || isWhitespace(*p))