diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-07-25 18:23:53 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-07-25 18:23:53 +0000 |
commit | a9b2dbc1a4b604efb400a503361e73dc4a344e10 (patch) | |
tree | e04c7584abc056409690571efb87c610e12dfdea /clang/lib/AST/NestedNameSpecifier.cpp | |
parent | b412e174db3846ec5aa83ecb8ead7fb54829237c (diff) | |
download | bcm5719-llvm-a9b2dbc1a4b604efb400a503361e73dc4a344e10.tar.gz bcm5719-llvm-a9b2dbc1a4b604efb400a503361e73dc4a344e10.zip |
Kill off the last Destroy method in the AST library
llvm-svn: 109378
Diffstat (limited to 'clang/lib/AST/NestedNameSpecifier.cpp')
-rw-r--r-- | clang/lib/AST/NestedNameSpecifier.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/AST/NestedNameSpecifier.cpp b/clang/lib/AST/NestedNameSpecifier.cpp index d6594cdfd02..212def8565e 100644 --- a/clang/lib/AST/NestedNameSpecifier.cpp +++ b/clang/lib/AST/NestedNameSpecifier.cpp @@ -176,11 +176,6 @@ NestedNameSpecifier::print(llvm::raw_ostream &OS, OS << "::"; } -void NestedNameSpecifier::Destroy(ASTContext &Context) { - this->~NestedNameSpecifier(); - Context.Deallocate((void *)this); -} - void NestedNameSpecifier::dump(const LangOptions &LO) { print(llvm::errs(), PrintingPolicy(LO)); } |