[clang] [C23] Fix typeof handling in enum declarations (PR #146394)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 2 11:43:37 PDT 2025
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 HEAD~1 HEAD --extensions h,cpp,c -- clang/include/clang/Parse/Parser.h clang/lib/Parse/ParseExpr.cpp clang/lib/Parse/ParseExprCXX.cpp clang/lib/Parse/ParseOpenMP.cpp clang/lib/Parse/ParseTemplate.cpp clang/lib/Parse/Parser.cpp clang/test/Parser/c2x-typeof.c
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h
index 647e65aa7..683934321 100644
--- a/clang/include/clang/Parse/Parser.h
+++ b/clang/include/clang/Parse/Parser.h
@@ -127,7 +127,7 @@ enum class ParenParseOption {
/// expression, etc.
enum class ParenExprKind {
PartOfOperator, // typeof(int)
- Unknown, // sizeof(int) or sizeof (int)1.0f, or compound literal, etc
+ Unknown, // sizeof(int) or sizeof (int)1.0f, or compound literal, etc
};
/// Describes the behavior that should be taken for an __if_exists
``````````
</details>
https://github.com/llvm/llvm-project/pull/146394
More information about the cfe-commits
mailing list