[PATCH] D34202: [clang-tidy] readability-function-size: fix nesting level calculation

Malcolm Parsons via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 14 09:37:23 PDT 2017


malcolm.parsons added a comment.

LGTM!



================
Comment at: clang-tidy/readability/FunctionSizeCheck.cpp:58
+    // is already nested NestingThreshold levels deep, record the start location
+    // of this new compound statement
+    if (CurrentNestingLevel == Info.NestingThreshold)
----------------
Missing full stop.


Repository:
  rL LLVM

https://reviews.llvm.org/D34202





More information about the cfe-commits mailing list