diff options
author | Anders Carlsson <andersca@mac.com> | 2009-08-27 00:13:57 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-08-27 00:13:57 +0000 |
commit | eabf770457b07bd17a4dc9d63b5954f1cb023948 (patch) | |
tree | 9d8a063050b44c343d9ffce35e599f68215a8b1d /clang/lib/Sema/SemaDeclCXX.cpp | |
parent | d624e16833af633707c190ce710f5f59163ec9cd (diff) | |
download | bcm5719-llvm-eabf770457b07bd17a4dc9d63b5954f1cb023948.tar.gz bcm5719-llvm-eabf770457b07bd17a4dc9d63b5954f1cb023948.zip |
New RequireNonAbstractType function.
llvm-svn: 80183
Diffstat (limited to 'clang/lib/Sema/SemaDeclCXX.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDeclCXX.cpp | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/clang/lib/Sema/SemaDeclCXX.cpp b/clang/lib/Sema/SemaDeclCXX.cpp index 4cd4300bcd6..e93624af154 100644 --- a/clang/lib/Sema/SemaDeclCXX.cpp +++ b/clang/lib/Sema/SemaDeclCXX.cpp @@ -1149,15 +1149,26 @@ namespace { } } + bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, unsigned DiagID, AbstractDiagSelID SelID, const CXXRecordDecl *CurrentRD) { + if (SelID == -1) + return RequireNonAbstractType(Loc, T, + PDiag(DiagID), CurrentRD); + else + return RequireNonAbstractType(Loc, T, + PDiag(DiagID) << SelID, CurrentRD); +} +bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, + const PartialDiagnostic &PD, + const CXXRecordDecl *CurrentRD) { if (!getLangOptions().CPlusPlus) return false; if (const ArrayType *AT = Context.getAsArrayType(T)) - return RequireNonAbstractType(Loc, AT->getElementType(), DiagID, SelID, + return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD); if (const PointerType *PT = T->getAs<PointerType>()) { @@ -1166,8 +1177,7 @@ bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, PT = T; if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType())) - return RequireNonAbstractType(Loc, AT->getElementType(), DiagID, SelID, - CurrentRD); + return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD); } const RecordType *RT = T->getAs<RecordType>(); @@ -1184,7 +1194,7 @@ bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, if (!RD->isAbstract()) return false; - Diag(Loc, DiagID) << RD->getDeclName() << SelID; + Diag(Loc, PD) << RD->getDeclName(); // Check if we've already emitted the list of pure virtual functions for this // class. |