[clang] [clang][NFC] Regroup declarations in `Parser` (PR #138511)
via cfe-commits
cfe-commits at lists.llvm.org
Wed May 7 08:19:46 PDT 2025
================
@@ -59,8 +59,8 @@ Parser::Parser(Preprocessor &pp, Sema &actions, bool skipFunctionBodies)
PreferredType(&actions.getASTContext(), pp.isCodeCompletionEnabled()),
Actions(actions), Diags(PP.getDiagnostics()), StackHandler(Diags),
GreaterThanIsOperator(true), ColonIsSacred(false),
- InMessageExpression(false), TemplateParameterDepth(0),
- ParsingInObjCContainer(false) {
+ InMessageExpression(false), ParsingInObjCContainer(false),
+ TemplateParameterDepth(0) {
----------------
Ariel-Burton wrote:
Why this change?
https://github.com/llvm/llvm-project/pull/138511
More information about the cfe-commits
mailing list