================
@@ -1457,6 +1457,11 @@ unsigned ContinuationIndenter::getNewLineColumn(const 
LineState &State) {
       !Current.isOneOf(tok::colon, tok::comment)) {
     return ContinuationIndent;
   }
+  if (Style.isCpp() && Current.is(tok::arrow) &&
----------------
HazardyKnusperkeks wrote:

```suggestion
  if (Style.isCpp() && Current.is(TT_TrailingReturnArrow) &&
```
This is what you need, right?

https://github.com/llvm/llvm-project/pull/94560
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to