================
@@ -925,7 +925,10 @@ void ContinuationIndenter::addTokenOnCurrentLine(LineState
&State, bool DryRun,
TT_TableGenDAGArgOpenerToBreak) &&
!(Current.MacroParent && Previous.MacroParent) &&
(Current.isNot(TT_LineComment) ||
- Previous.isOneOf(BK_BracedInit, TT_VerilogMultiLineListLParen)) &&
+ (Previous.is(BK_BracedInit) &&
+ (!Style.Cpp11BracedListStyle || !Previous.Previous ||
+ Previous.Previous->isNotOneOf(tok::identifier, tok::l_paren))) ||
----------------
owenca wrote:
```suggestion
Previous.Previous->isNoneOf(tok::identifier, tok::l_paren))) ||
```
https://github.com/llvm/llvm-project/pull/71672
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits