Funtion templates and function template specializations do not

override virtual functions. Also, eliminate a (now redundant) call to
AddOverriddenMethods.

llvm-svn: 90242
This commit is contained in:
Douglas Gregor 2009-12-01 17:35:23 +00:00
parent 21920e3758
commit 6be3de3fa7
3 changed files with 19 additions and 6 deletions

View File

@ -3259,8 +3259,11 @@ void Sema::CheckFunctionDeclaration(FunctionDecl *NewFD,
}
// Find any virtual functions that this function overrides.
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD))
AddOverriddenMethods(Method->getParent(), Method);
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
if (!Method->isFunctionTemplateSpecialization() &&
!Method->getDescribedFunctionTemplate())
AddOverriddenMethods(Method->getParent(), Method);
}
// Extra checking for C++ overloaded operators (C++ [over.oper]).
if (NewFD->isOverloadedOperator() &&

View File

@ -870,8 +870,6 @@ TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
!Method->getFriendObjectKind())
Owner->addDecl(Method);
SemaRef.AddOverriddenMethods(Record, Method);
return Method;
}

View File

@ -115,13 +115,25 @@ class X1 : public X0 {
template <typename Base>
struct Foo : Base {
void f() = 0; // expected-error{{not virtual and cannot be declared pure}}
void f(int) = 0; // expected-error{{not virtual and cannot be declared pure}}
};
struct Base1 { virtual void f(); };
struct Base1 { virtual void f(int); };
struct Base2 { };
void test() {
Foo<Base1> f1;
Foo<Base2> f2; // expected-note{{instantiation}}
}
template<typename Base>
struct Foo2 : Base {
template<typename T> int f(T);
};
void test2() {
Foo2<Base1> f1;
Foo2<Base2> f2;
f1.f(17);
f2.f(17);
};