owenpan added inline comments.

================
Comment at: clang/lib/Format/UnwrappedLineParser.cpp:1964-1965
       }
-      if (FormatTok->is(TT_FatArrow)) {
-        nextToken();
-        // Fat arrows can be followed by simple expressions or by child blocks
-        // in curly braces.
-        if (FormatTok->is(tok::l_brace)) {
-          parseChildBlock();
-          continue;
-        }
-      }
+      if (FormatTok->is(TT_FatArrow) && tryToParseChildBlock())
+        continue;
       if (FormatTok->is(tok::l_brace)) {
----------------
Removing these two lines doesn't fail FormatTests.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D115967/new/

https://reviews.llvm.org/D115967

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to