diff options
author | Anders Carlsson <andersca@mac.com> | 2009-03-28 01:09:05 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-03-28 01:09:05 +0000 |
commit | 0cb4cc106c263e9d5ae3253a4c08a552f6766b80 (patch) | |
tree | eb5f00ce0d3411ffb11eb97ae2adb5ec4b8b8b37 /clang/lib/Sema/SemaInherit.h | |
parent | 2b9e7efccd2ecc45b88101aeb8803819d5a3b901 (diff) | |
download | bcm5719-llvm-0cb4cc106c263e9d5ae3253a4c08a552f6766b80.tar.gz bcm5719-llvm-0cb4cc106c263e9d5ae3253a4c08a552f6766b80.zip |
Implement access checking for protected base classes.
llvm-svn: 67887
Diffstat (limited to 'clang/lib/Sema/SemaInherit.h')
-rw-r--r-- | clang/lib/Sema/SemaInherit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaInherit.h b/clang/lib/Sema/SemaInherit.h index 6138685b264..a164d43e8ae 100644 --- a/clang/lib/Sema/SemaInherit.h +++ b/clang/lib/Sema/SemaInherit.h @@ -40,7 +40,7 @@ namespace clang { const CXXBaseSpecifier *Base; /// Class - The record decl of the class that the base is a base of. - const CXXRecordDecl *Class; + CXXRecordDecl *Class; /// SubobjectNumber - Identifies which base class subobject (of type /// @c Base->getType()) this base path element refers to. This |