JonasToth added a comment.

Please upload the patch with full context (i belive `diff -c 9999999`)



================
Comment at: lib/Format/TokenAnnotator.cpp:3054
+      return true;
+    else if (!Style.BinPackArguments)
+      return true;
----------------
please no `else` after return. You can safely use

```
if (Left....)
   return true;
if (!Style...)
   return true;
```


Repository:
  rC Clang

https://reviews.llvm.org/D52676



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

Reply via email to