[clang] [clang-format] add option to control bin-packing keyworded parameters (PR #131605)
Eugene Shalygin via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 19 02:26:52 PDT 2025
================
@@ -148,6 +160,24 @@ class AnnotatingParser {
}
}
+ const FormatStyle::FunctionDeclarationWithKeywords *
+ isInsideFunctionWithKeywordedParameters(const FormatToken &Token) const {
+ const FormatToken *Previous = &Token;
+ while (auto Prev = Previous->getPreviousNonComment())
+ Previous = Prev;
----------------
zeule wrote:
Ah, so `AnnotatedLine` contains a single statement only?
https://github.com/llvm/llvm-project/pull/131605
More information about the cfe-commits
mailing list