diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-17 01:20:38 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-17 01:20:38 +0000 |
commit | b825c0ddc510d8aa0cce9b4065cb8e5dace6bc39 (patch) | |
tree | cd576de18eb9d3fe372b2471a676e0a2cc6782e1 /clang/lib/Sema/SemaInherit.cpp | |
parent | 95d401de9dabfe99c54dd484a780f4cddab2c26a (diff) | |
download | bcm5719-llvm-b825c0ddc510d8aa0cce9b4065cb8e5dace6bc39.tar.gz bcm5719-llvm-b825c0ddc510d8aa0cce9b4065cb8e5dace6bc39.zip |
Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents.
llvm-svn: 76139
Diffstat (limited to 'clang/lib/Sema/SemaInherit.cpp')
-rw-r--r-- | clang/lib/Sema/SemaInherit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaInherit.cpp b/clang/lib/Sema/SemaInherit.cpp index 2f914f14a81..be235e92715 100644 --- a/clang/lib/Sema/SemaInherit.cpp +++ b/clang/lib/Sema/SemaInherit.cpp @@ -114,7 +114,7 @@ bool Sema::IsDerivedFrom(QualType Derived, QualType Base, BasePaths &Paths) { return false; Paths.setOrigin(Derived); - return LookupInBases(cast<CXXRecordDecl>(Derived->getAsRecordType()->getDecl()), + return LookupInBases(cast<CXXRecordDecl>(Derived->getAs<RecordType>()->getDecl()), MemberLookupCriteria(Base), Paths); } @@ -156,7 +156,7 @@ bool Sema::LookupInBases(CXXRecordDecl *Class, if (Paths.isDetectingVirtual() && Paths.DetectedVirtual == 0) { // If this is the first virtual we find, remember it. If it turns out // there is no base path here, we'll reset it later. - Paths.DetectedVirtual = BaseType->getAsRecordType(); + Paths.DetectedVirtual = BaseType->getAs<RecordType>(); SetVirtual = true; } } else @@ -175,7 +175,7 @@ bool Sema::LookupInBases(CXXRecordDecl *Class, } CXXRecordDecl *BaseRecord - = cast<CXXRecordDecl>(BaseSpec->getType()->getAsRecordType()->getDecl()); + = cast<CXXRecordDecl>(BaseSpec->getType()->getAs<RecordType>()->getDecl()); // Either look at the base class type or look into the base class // type to see if we've found a member that meets the search |