git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51544 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-05-24 15:09:56 +00:00
Родитель 2c33a16437
Коммит ebf27b1831
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -231,7 +231,7 @@ void NamespaceDecl::Destroy(ASTContext& C) {
// NamespaceDecl uses "NextDeclarator" to chain namespace declarations // NamespaceDecl uses "NextDeclarator" to chain namespace declarations
// together. They are all top-level Decls. // together. They are all top-level Decls.
this->~Decl(); this->~NamespaceDecl();
C.getAllocator().Deallocate((void *)this); C.getAllocator().Deallocate((void *)this);
} }