From: Benjamin Kramer Date: Sun, 31 Jan 2010 09:01:55 +0000 (+0000) Subject: Try to unbreak MSVC build. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a05315436746963c4034555ca725956507e14553;p=clang Try to unbreak MSVC build. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94951 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp index 26121e2485..ce97387ee3 100644 --- a/lib/AST/Stmt.cpp +++ b/lib/AST/Stmt.cpp @@ -474,7 +474,7 @@ void AsmStmt::DoDestroy(ASTContext &C) { C.Deallocate(Exprs); C.Deallocate(Clobbers); - this->~Stmt(); + this->~AsmStmt(); C.Deallocate((void *)this); }