File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,8 @@ bool VirtualNearMissCheck::isPossibleToBeOverridden(
178
178
179
179
bool IsPossible = !BaseMD->isImplicit () && !isa<CXXConstructorDecl>(BaseMD) &&
180
180
!isa<CXXDestructorDecl>(BaseMD) && BaseMD->isVirtual () &&
181
- !BaseMD->isOverloadedOperator ();
181
+ !BaseMD->isOverloadedOperator () &&
182
+ !isa<CXXConversionDecl>(BaseMD);
182
183
PossibleMap[Id] = IsPossible;
183
184
return IsPossible;
184
185
}
@@ -210,8 +211,9 @@ void VirtualNearMissCheck::registerMatchers(MatchFinder *Finder) {
210
211
return ;
211
212
212
213
Finder->addMatcher (
213
- cxxMethodDecl (unless (anyOf (isOverride (), isImplicit (),
214
- cxxConstructorDecl (), cxxDestructorDecl ())))
214
+ cxxMethodDecl (
215
+ unless (anyOf (isOverride (), isImplicit (), cxxConstructorDecl (),
216
+ cxxDestructorDecl (), cxxConversionDecl ())))
215
217
.bind (" method" ),
216
218
this );
217
219
}
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ class Child : private Father, private Mother {
69
69
int decaz (const char str[]);
70
70
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: method 'Child::decaz' has {{.*}} 'Mother::decay'
71
71
72
+ operator bool ();
72
73
private:
73
74
void funk ();
74
75
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: method 'Child::funk' has {{.*}} 'Father::func'
You can’t perform that action at this time.
0 commit comments