diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2020-03-18 18:20:05 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2020-03-18 18:20:05 +0000 |
commit | 2fc9bb9ce23aec06620745773d24e59944b87ffc (patch) | |
tree | 0726fa11e6594591f34578ba035ea82a69fc0393 /clang/lib/Sema/SemaExprCXX.cpp | |
parent | d652fd2996ce31dfd35dd2a9c58bf051ca7fff44 (diff) |
Notes
Diffstat (limited to 'clang/lib/Sema/SemaExprCXX.cpp')
-rw-r--r-- | clang/lib/Sema/SemaExprCXX.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaExprCXX.cpp b/clang/lib/Sema/SemaExprCXX.cpp index 705abdb4ce72..e97171b6334e 100644 --- a/clang/lib/Sema/SemaExprCXX.cpp +++ b/clang/lib/Sema/SemaExprCXX.cpp @@ -6802,7 +6802,7 @@ Stmt *Sema::MaybeCreateStmtWithCleanups(Stmt *SubStmt) { Context, SubStmt, SourceLocation(), SourceLocation()); Expr *E = new (Context) StmtExpr(CompStmt, Context.VoidTy, SourceLocation(), SourceLocation(), - CurContext->isDependentContext()); + /*FIXME TemplateDepth=*/0); return MaybeCreateExprWithCleanups(E); } |