diff options
author | John McCall <rjmccall@apple.com> | 2012-04-09 20:53:23 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2012-04-09 20:53:23 +0000 |
commit | 12d8d80fb0f8d9cddecb34da0f37b0dc9fcaf5e6 (patch) | |
tree | 25960d2d9bf8000a56ab2d6929b7ca9d81b8f622 /include | |
parent | ae7e939bc027ef19ca91ab8bcccb11338a0bd576 (diff) |
Fix the access check performed as part of the determination of whether
to define a special member function as deleted so that it properly
establishes an object context for the accesses to the base subobject
members.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154343 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/Sema/Sema.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 453c7f37f4..eb8b7998ce 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -4129,6 +4129,9 @@ public: bool ForceUnprivileged = false); void CheckLookupAccess(const LookupResult &R); bool IsSimplyAccessible(NamedDecl *decl, DeclContext *Ctx); + bool isSpecialMemberAccessibleForDeletion(CXXMethodDecl *decl, + AccessSpecifier access, + QualType objectType); void HandleDependentAccessCheck(const DependentDiagnostic &DD, const MultiLevelTemplateArgumentList &TemplateArgs); |