diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-02-28 01:32:25 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-02-28 01:32:25 +0000 |
commit | c1efaecf0373f1a55c5ef4c234357cf726fc0600 (patch) | |
tree | c449e41d3715898f32c75c618a20dea1b3910fd2 /lib/Sema/SemaInherit.h | |
parent | aca13a7df407b32a6ee497a0646f83184edefb49 (diff) |
Eliminate CXXRecordType
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65671 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaInherit.h')
-rw-r--r-- | lib/Sema/SemaInherit.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Sema/SemaInherit.h b/lib/Sema/SemaInherit.h index 311c136a0f..8d008a2ce6 100644 --- a/lib/Sema/SemaInherit.h +++ b/lib/Sema/SemaInherit.h @@ -27,7 +27,6 @@ namespace clang { class CXXBaseSpecifier; - class CXXRecordType; /// BasePathElement - An element in a path from a derived class to a /// base class. Each step in the path references the link from a @@ -128,7 +127,7 @@ namespace clang { BasePath ScratchPath; /// DetectedVirtual - The base class that is virtual. - const CXXRecordType *DetectedVirtual; + const RecordType *DetectedVirtual; friend class Sema; @@ -167,7 +166,7 @@ namespace clang { bool isDetectingVirtual() const { return DetectVirtual; } /// getDetectedVirtual - The virtual base discovered on the path. - const CXXRecordType* getDetectedVirtual() const { + const RecordType* getDetectedVirtual() const { return DetectedVirtual; } |