Linker: Remove empty destructor.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245672 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Peter Collingbourne 2015-08-21 04:51:24 +00:00
parent 22df81e087
commit e0d3c7ca6d
2 changed files with 0 additions and 4 deletions

View File

@ -62,7 +62,6 @@ public:
Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler);
Linker(Module *M);
~Linker();
Module *getModule() const { return Composite; }
void deleteModule();

View File

@ -1754,9 +1754,6 @@ Linker::Linker(Module *M) {
});
}
Linker::~Linker() {
}
void Linker::deleteModule() {
delete Composite;
Composite = nullptr;