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 | 37db4db11b95e32d4ba205d9246c940025666f97 (patch) | |
tree | 3f8b4f3cc3cb7b409999d2ff67aa92fb86dcb0e2 /lib/AST/NestedNameSpecifier.cpp | |
parent | ff331c15729f7d4439d253c97f4d60f2a7ffd0c6 (diff) |
Kill off the last Destroy method in the AST library
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109378 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/NestedNameSpecifier.cpp')
-rw-r--r-- | lib/AST/NestedNameSpecifier.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/AST/NestedNameSpecifier.cpp b/lib/AST/NestedNameSpecifier.cpp index d6594cdfd0..212def8565 100644 --- a/lib/AST/NestedNameSpecifier.cpp +++ b/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)); } |