[clang-tidy] s/1/true/, NFC

llvm-svn: 308621
This commit is contained in:
Alexander Kornienko
2017-07-20 14:56:52 +00:00
parent fc1651cb1a
commit deda4b2ae0

View File

@@ -140,7 +140,7 @@ UseDefaultMemberInitCheck::UseDefaultMemberInitCheck(StringRef Name,
ClangTidyContext *Context)
: ClangTidyCheck(Name, Context),
UseAssignment(Options.get("UseAssignment", 0) != 0),
IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", 1) != 0) {}
IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true) != 0) {}
void UseDefaultMemberInitCheck::storeOptions(
ClangTidyOptions::OptionMap &Opts) {