clang-tidy: add IgnoreMacros option to modernize-use-default-member-init

Summary:
And also enable it by default to be consistent with e.g.
modernize-use-using.

This helps e.g. when running this check on cppunit client code where the
macro is provided by the system, so there is no easy way to modify it.

Reviewers: alexfh, malcolm.parsons

Reviewed By: malcolm.parsons

Subscribers: cfe-commits

Differential Revision: https://reviews.llvm.org/D32945

llvm-svn: 302429
This commit is contained in:
Miklos Vajna 2017-05-08 15:13:31 +00:00
parent 7fdbb3feda
commit 0854f2dd8f
6 changed files with 41 additions and 2 deletions

View File

@ -139,11 +139,13 @@ static bool sameValue(const Expr *E1, const Expr *E2) {
UseDefaultMemberInitCheck::UseDefaultMemberInitCheck(StringRef Name,
ClangTidyContext *Context)
: ClangTidyCheck(Name, Context),
UseAssignment(Options.get("UseAssignment", 0) != 0) {}
UseAssignment(Options.get("UseAssignment", 0) != 0),
IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", 1) != 0) {}
void UseDefaultMemberInitCheck::storeOptions(
ClangTidyOptions::OptionMap &Opts) {
Options.store(Opts, "UseAssignment", UseAssignment);
Options.store(Opts, "IgnoreMacros", IgnoreMacros);
}
void UseDefaultMemberInitCheck::registerMatchers(MatchFinder *Finder) {
@ -197,6 +199,10 @@ void UseDefaultMemberInitCheck::checkDefaultInit(
const MatchFinder::MatchResult &Result, const CXXCtorInitializer *Init) {
const FieldDecl *Field = Init->getMember();
SourceLocation StartLoc = Field->getLocStart();
if (StartLoc.isMacroID() && IgnoreMacros)
return;
SourceLocation FieldEnd =
Lexer::getLocForEndOfToken(Field->getSourceRange().getEnd(), 0,
*Result.SourceManager, getLangOpts());

View File

@ -36,6 +36,7 @@ private:
const CXXCtorInitializer *Init);
const bool UseAssignment;
const bool IgnoreMacros;
};
} // namespace modernize

View File

@ -19,7 +19,7 @@ namespace modernize {
UseUsingCheck::UseUsingCheck(StringRef Name, ClangTidyContext *Context)
: ClangTidyCheck(Name, Context),
IgnoreMacros(Options.get("IgnoreMacros", true)) {}
IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true)) {}
void UseUsingCheck::registerMatchers(MatchFinder *Finder) {
if (!getLangOpts().CPlusPlus11)

View File

@ -47,3 +47,8 @@ Options
int i = 5;
double j = 10.0;
};
.. option:: IgnoreMacros
If this option is set to non-zero (default is `1`), the check will not warn
about members declared inside macros.

View File

@ -0,0 +1,18 @@
// RUN: %check_clang_tidy %s modernize-use-default-member-init %t -- \
// RUN: -config="{CheckOptions: [{key: modernize-use-default-member-init.IgnoreMacros, value: 0}]}" \
// RUN: -- -std=c++11
#define MACRO() \
struct S { \
void *P; \
S() : P(nullptr) {} \
};
MACRO();
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: use default member initializer for 'P'
struct S2 {
void *P;
// CHECK-MESSAGES: :[[@LINE-1]]:9: warning: use default member initializer for 'P'
S2() : P(nullptr) {}
};

View File

@ -380,3 +380,12 @@ struct NegativeTemplateExisting {
NegativeTemplateExisting<int> ntei(0);
NegativeTemplateExisting<double> nted(0);
// This resulted in a warning by default.
#define MACRO() \
struct MacroS { \
void *P; \
MacroS() : P(nullptr) {} \
};
MACRO();