mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Remove explicit no-op dtor in favor of the implicit dtor so as not to disable/deprecate the copy operations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231113 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b858734918
commit
394b3ac916
@ -70,7 +70,6 @@ protected:
|
||||
|
||||
public:
|
||||
Option(const OptTable::Info *Info, const OptTable *Owner);
|
||||
~Option();
|
||||
|
||||
bool isValid() const {
|
||||
return Info != nullptr;
|
||||
|
@ -35,9 +35,6 @@ Option::Option(const OptTable::Info *info, const OptTable *owner)
|
||||
}
|
||||
}
|
||||
|
||||
Option::~Option() {
|
||||
}
|
||||
|
||||
void Option::dump() const {
|
||||
llvm::errs() << "<";
|
||||
switch (getKind()) {
|
||||
|
Loading…
Reference in New Issue
Block a user