diff options
author | Anders Carlsson <andersca@mac.com> | 2009-10-18 19:34:08 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-10-18 19:34:08 +0000 |
commit | 2782302961b6f57316b1ece494c7135b65e18b30 (patch) | |
tree | 16fe243872e1548055b44aee8cd317c47fa8b982 /lib | |
parent | c6b29163557d02da5d2a4a06f986f0480291f51f (diff) |
It's OK for a pure virtual function to override another pure virtual function. Fixes PR5222.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Sema/SemaDeclCXX.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Sema/SemaDeclCXX.cpp b/lib/Sema/SemaDeclCXX.cpp index 419c8a13c2..d2ef113b30 100644 --- a/lib/Sema/SemaDeclCXX.cpp +++ b/lib/Sema/SemaDeclCXX.cpp @@ -1658,12 +1658,10 @@ namespace { // Traverse the record, looking for methods. if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*i)) { // If the method is pure virtual, add it to the methods vector. - if (MD->isPure()) { + if (MD->isPure()) Methods.push_back(MD); - continue; - } - // Otherwise, record all the overridden methods in our set. + // Record all the overridden methods in our set. for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), E = MD->end_overridden_methods(); I != E; ++I) { // Keep track of the overridden methods. |