[clang-tidy] Change readability-redundant-member-init to get base type from constructor
authorMalcolm Parsons <malcolm.parsons@gmail.com>
Tue, 15 Nov 2016 17:49:00 +0000 (17:49 +0000)
committerMalcolm Parsons <malcolm.parsons@gmail.com>
Tue, 15 Nov 2016 17:49:00 +0000 (17:49 +0000)
Summary: Fixes PR30835

Reviewers: alexfh, hokein, aaron.ballman

Subscribers: Prazek, cfe-commits

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

llvm-svn: 286990

clang-tools-extra/clang-tidy/readability/RedundantMemberInitCheck.cpp
clang-tools-extra/test/clang-tidy/readability-redundant-member-init.cpp

index 26003e6..8fe67c1 100644 (file)
@@ -54,7 +54,7 @@ void RedundantMemberInitCheck::check(const MatchFinder::MatchResult &Result) {
     } else {
       diag(Init->getSourceLocation(),
            "initializer for base class %0 is redundant")
-          << Init->getTypeSourceInfo()->getType()
+          << Construct->getType()
           << FixItHint::CreateRemoval(Init->getSourceRange());
     }
   }
index 70a2155..f15cb1b 100644 (file)
@@ -87,6 +87,24 @@ struct F7 : S, T {
   // CHECK-FIXES: F7()  {}
 };
 
+namespace Foo {
+inline namespace Bar {
+template <int N>
+struct Template {
+  Template() = default;
+  int i = N;
+};
+}
+}
+
+enum { N_THINGS = 5 };
+
+struct F8 : Foo::Template<N_THINGS> {
+  F8() : Template() {}
+  // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: initializer for base class 'Foo::Template<N_THINGS>' is redundant
+  // CHECK-FIXES: F8()  {}
+};
+
 // Initializer not written
 struct NF1 {
   NF1() {}