[clang] [clang] Fix enum/non-enum conditional warning in ParseStmt (PR #207085)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 1 22:46:33 PDT 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- clang/lib/Parse/ParseStmt.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp
index 17886bffe..f9c7d0988 100644
--- a/clang/lib/Parse/ParseStmt.cpp
+++ b/clang/lib/Parse/ParseStmt.cpp
@@ -1741,7 +1741,8 @@ StmtResult Parser::ParseWhileStatement(SourceLocation *TrailingElseLoc,
// while, for, and switch statements are local to the if, while, for, or
// switch statement (including the controlled statement).
//
- unsigned ScopeFlags = Scope::ControlScope | (C99orCXX ? Scope::DeclScope : Scope::NoScope);
+ unsigned ScopeFlags =
+ Scope::ControlScope | (C99orCXX ? Scope::DeclScope : Scope::NoScope);
ParseScope WhileScope(this, ScopeFlags);
// Parse the condition.
``````````
</details>
https://github.com/llvm/llvm-project/pull/207085
More information about the cfe-commits
mailing list