diff options
Diffstat (limited to 'clang/lib/Sema/Sema.h')
| -rw-r--r-- | clang/lib/Sema/Sema.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 57e527e94a6..689ad493e85 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -2181,6 +2181,15 @@ public:    OwningExprResult DiagnoseDtorReference(SourceLocation NameLoc,                                           ExprArg MemExpr); +  OwningExprResult BuildPseudoDestructorExpr(ExprArg Base, +                                             SourceLocation OpLoc, +                                             tok::TokenKind OpKind, +                                             const CXXScopeSpec &SS, +                                             TypeSourceInfo *ScopeType, +                                             SourceLocation CCLoc, +                                             TypeSourceInfo *DestroyedType, +                                             bool HasTrailingLParen); +      OwningExprResult ActOnDependentPseudoDestructorExpr(Scope *S,                                                         ExprArg Base,                                                        SourceLocation OpLoc, | 

