diff options
Diffstat (limited to 'clang-tools-extra/docs/clang-tidy/checks/readability-function-size.rst')
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/readability-function-size.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/checks/readability-function-size.rst b/clang-tools-extra/docs/clang-tidy/checks/readability-function-size.rst index fbefa971987..ecb3cde7d62 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/readability-function-size.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/readability-function-size.rst @@ -25,3 +25,8 @@ Options Flag functions exceeding this number of control statements. The default is `-1` (ignore the number of branches). + +.. option:: ParameterThreshold + + Flag functions that exceed a specified number of parameters. The default + is 6. |