Remove explicit no-op dtor in favor of the implicit dtor so as not to disable/deprecate the copy operations.

llvm-svn: 231113
This commit is contained in:
David Blaikie 2015-03-03 19:53:02 +00:00
parent 6695b09e55
commit ca199cbf9b
2 changed files with 0 additions and 4 deletions

View File

@ -70,7 +70,6 @@ protected:
public:
Option(const OptTable::Info *Info, const OptTable *Owner);
~Option();
bool isValid() const {
return Info != nullptr;

View File

@ -35,9 +35,6 @@ Option::Option(const OptTable::Info *info, const OptTable *owner)
}
}
Option::~Option() {
}
void Option::dump() const {
llvm::errs() << "<";
switch (getKind()) {