Skip to content

Commit dc84150

Browse files
committedJan 26, 2016
Fix crashing on user-defined conversion.
Summary: Fix the assertion failure for the user-defined conversion method. e.g.: operator bool() Reviewers: alexfh, aaron.ballman Subscribers: aaron.ballman, cfe-commits Patch by Cong Liu! Differential Revision: http://reviews.llvm.org/D16536 llvm-svn: 258801
1 parent b649b00 commit dc84150

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
 

‎clang-tools-extra/clang-tidy/misc/VirtualNearMissCheck.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ bool VirtualNearMissCheck::isPossibleToBeOverridden(
178178

179179
bool IsPossible = !BaseMD->isImplicit() && !isa<CXXConstructorDecl>(BaseMD) &&
180180
!isa<CXXDestructorDecl>(BaseMD) && BaseMD->isVirtual() &&
181-
!BaseMD->isOverloadedOperator();
181+
!BaseMD->isOverloadedOperator() &&
182+
!isa<CXXConversionDecl>(BaseMD);
182183
PossibleMap[Id] = IsPossible;
183184
return IsPossible;
184185
}
@@ -210,8 +211,9 @@ void VirtualNearMissCheck::registerMatchers(MatchFinder *Finder) {
210211
return;
211212

212213
Finder->addMatcher(
213-
cxxMethodDecl(unless(anyOf(isOverride(), isImplicit(),
214-
cxxConstructorDecl(), cxxDestructorDecl())))
214+
cxxMethodDecl(
215+
unless(anyOf(isOverride(), isImplicit(), cxxConstructorDecl(),
216+
cxxDestructorDecl(), cxxConversionDecl())))
215217
.bind("method"),
216218
this);
217219
}

‎clang-tools-extra/test/clang-tidy/misc-virtual-near-miss.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ class Child : private Father, private Mother {
6969
int decaz(const char str[]);
7070
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: method 'Child::decaz' has {{.*}} 'Mother::decay'
7171

72+
operator bool();
7273
private:
7374
void funk();
7475
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: method 'Child::funk' has {{.*}} 'Father::func'

0 commit comments

Comments
 (0)
Please sign in to comment.