From 93d35acb287038a9585e16aa72711e24112a4dc3 Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Fri, 27 Mar 2009 18:54:29 +0000 Subject: [PATCH] Add a Class field to the base path element structure. This holds the record decl of the class taht the base is a base of. llvm-svn: 67859 --- clang/lib/Sema/SemaInherit.cpp | 1 + clang/lib/Sema/SemaInherit.h | 3 +++ 2 files changed, 4 insertions(+) diff --git a/clang/lib/Sema/SemaInherit.cpp b/clang/lib/Sema/SemaInherit.cpp index c572f62d611b..cc495c5ea494 100644 --- a/clang/lib/Sema/SemaInherit.cpp +++ b/clang/lib/Sema/SemaInherit.cpp @@ -132,6 +132,7 @@ bool Sema::LookupInBases(CXXRecordDecl *Class, // Add this base specifier to the current path. BasePathElement Element; Element.Base = &*BaseSpec; + Element.Class = Class; if (BaseSpec->isVirtual()) Element.SubobjectNumber = 0; else diff --git a/clang/lib/Sema/SemaInherit.h b/clang/lib/Sema/SemaInherit.h index 8d008a2ce61f..6138685b2644 100644 --- a/clang/lib/Sema/SemaInherit.h +++ b/clang/lib/Sema/SemaInherit.h @@ -39,6 +39,9 @@ namespace clang { /// path element. const CXXBaseSpecifier *Base; + /// Class - The record decl of the class that the base is a base of. + const CXXRecordDecl *Class; + /// SubobjectNumber - Identifies which base class subobject (of type /// @c Base->getType()) this base path element refers to. This /// value is only valid if @c !Base->isVirtual(), because there