diff options
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/AST/ExprCXX.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/AST/ExprCXX.cpp b/clang/lib/AST/ExprCXX.cpp index 2ad65451dee..0c374ff5cce 100644 --- a/clang/lib/AST/ExprCXX.cpp +++ b/clang/lib/AST/ExprCXX.cpp @@ -14,10 +14,10 @@ #include "clang/AST/ExprCXX.h" using namespace clang; -void CXXConditionDeclExpr::Destroy(ASTContext& C) {
- getVarDecl()->Destroy(C);
- delete this;
-}
+void CXXConditionDeclExpr::Destroy(ASTContext& C) { + getVarDecl()->Destroy(C); + delete this; +} //===----------------------------------------------------------------------===// |