[clang-tidy] readability-function-size: remove default param count threshold

llvm-svn: 297311
This commit is contained in:
Alexander Kornienko 2017-03-08 22:19:55 +00:00
parent 16300aa296
commit 5d698cf9a0
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ FunctionSizeCheck::FunctionSizeCheck(StringRef Name, ClangTidyContext *Context)
LineThreshold(Options.get("LineThreshold", -1U)),
StatementThreshold(Options.get("StatementThreshold", 800U)),
BranchThreshold(Options.get("BranchThreshold", -1U)),
ParameterThreshold(Options.get("ParameterThreshold", 6)) {}
ParameterThreshold(Options.get("ParameterThreshold", -1U)) {}
void FunctionSizeCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) {
Options.store(Opts, "LineThreshold", LineThreshold);