Replace empty destructor bodies with =default definitions

This commit is contained in:
Tim Wojtulewicz 2023-07-06 14:01:11 -07:00
parent 1991b87a07
commit 90d0bc64fa
66 changed files with 45 additions and 124 deletions

View file

@ -101,8 +101,6 @@ ValTrace::ValTrace(const ValPtr& _v) : v(_v)
}
}
ValTrace::~ValTrace() { }
bool ValTrace::operator==(const ValTrace& vt) const
{
auto& vt_v = vt.GetVal();