[clang-tidy] Fix incorrect default option in fc3c693b61

This commit is contained in:
Nathan James 2020-07-06 14:44:03 +01:00
parent fc3c693b61
commit 0196600367

View file

@ -44,7 +44,7 @@ public:
ClangTidyOptions Options;
Options.CheckOptions["llvm-qualified-auto.AddConstToQualified"] = "0";
Options.CheckOptions["llvm-else-after-return.WarnOnUnfixable"] = "0";
Options.CheckOptions["llvm-else-after-return.RefactorConditionVariables"] =
Options.CheckOptions["llvm-else-after-return.WarnOnConditionVariables"] =
"0";
return Options;
}