================
@@ -2315,6 +2315,8 @@ bool UnwrappedLineParser::tryToParseLambdaIntroducer() {
     if (Next->is(tok::greater))
       return false;
   }
+  if (tok::isLiteral(FormatTok->Tok.getKind()))
+    return false;
----------------
owenca wrote:

```suggestion
```
Instead, I would change line 2311 to:
```
  if (FormatTok->isOneOf(tok::l_square, tok::numeric_constant))
```

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

Reply via email to