alexfh added a comment.

A couple of late comments.



================
Comment at: clang-tidy/fuchsia/DefaultArgumentsCheck.cpp:39
+      return;
+    } else if (DefaultArgRange.getBegin().isMacroID()) {
+      diag(D->getLocStart(),
----------------
No `else` after `return`, please. 
http://llvm.org/docs/CodingStandards.html#don-t-use-else-after-a-return


================
Comment at: clang-tidy/fuchsia/DefaultArgumentsCheck.cpp:56
+          "declaring a parameter with a default argument is disallowed")
+          << D
+          << FixItHint::CreateRemoval(RemovalRange);
----------------
This argument is not used in the message. Does it have any effect at all?


================
Comment at: docs/clang-tidy/index.rst:64
 ``clang-analyzer-``    Clang Static Analyzer checks.
+``fuchsia-``           Checks related to Fuchsia coding conventions.
 ``google-``            Checks related to Google coding conventions.
----------------
How about adding a link to the coding style document? (We should do this for 
other entries here, but that's unrelated to your patch.)


https://reviews.llvm.org/D40108



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

Reply via email to