owenpan added inline comments.

================
Comment at: clang/lib/Format/UnwrappedLineParser.cpp:2007
+        if (FormatTok->is(tok::l_brace)) {
+          if (Style.isCSharp() && Style.BraceWrapping.AfterFunction == true) {
+            FormatTok->MustBreakBefore = true;
----------------
You already tested for C# on line 2004.


================
Comment at: clang/lib/Format/UnwrappedLineParser.cpp:2009
+            FormatTok->MustBreakBefore = true;
+          }
+          parseChildBlock();
----------------
Remove braces.


================
Comment at: clang/lib/Format/UnwrappedLineParser.cpp:2012
+        }
+      } else
         nextToken();
----------------
Add braces after `else` to match `if`.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D115738

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

Reply via email to