https://github.com/HazardyKnusperkeks created https://github.com/llvm/llvm-project/pull/218142
That were missed while merging #212856. From 8d47f5e1f466afe5a01dc55cea3d02a528a4fed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Sch=C3=A4pers?= <[email protected]> Date: Sat, 22 Aug 2026 18:12:27 +0200 Subject: [PATCH] [clang-format][NFC] Apply review comments That were missed while merging #212856. --- clang/lib/Format/UnwrappedLineParser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/lib/Format/UnwrappedLineParser.cpp b/clang/lib/Format/UnwrappedLineParser.cpp index da6465548bb3e..f5af9b03c58a9 100644 --- a/clang/lib/Format/UnwrappedLineParser.cpp +++ b/clang/lib/Format/UnwrappedLineParser.cpp @@ -2675,7 +2675,7 @@ bool UnwrappedLineParser::parseParens(TokenType StarAndAmpTokenType, bool SeenComma = false; bool SeenEqual = false; bool MightBeFoldExpr = false; - auto ExcessLess = 0; + unsigned ExcessLess = 0; nextToken(); const bool MightBeStmtExpr = FormatTok->is(tok::l_brace); if (!InMacroCall && Prev && Prev->is(TT_FunctionLikeMacro)) @@ -2804,7 +2804,7 @@ bool UnwrappedLineParser::parseParens(TokenType StarAndAmpTokenType, parseRequiresExpression(); break; case tok::less: - // We have here no clue wether this is a less, or a template opener, opt + // We have here no clue whether this is a less, or a template opener, opt // out of the predefined StarAndAmpTokenType. ++ExcessLess; nextToken(); _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
