[PATCH] D20597: Speed up check by using a recursive visitor.

Alexander Kornienko via cfe-commits cfe-commits at lists.llvm.org
Tue May 24 16:10:52 PDT 2016


alexfh accepted this revision.
alexfh added a comment.
This revision is now accepted and ready to land.

LG. Thank you!


================
Comment at: clang-tidy/readability/FunctionSizeCheck.cpp:25
@@ +24,3 @@
+  bool TraverseStmt(Stmt* Node) {
+    if (!Node) return Base::TraverseStmt(Node);
+
----------------
nit: clang-format -style=file


http://reviews.llvm.org/D20597





More information about the cfe-commits mailing list