refactor: took out unused member functions

Took out the following unused member functions:

- 'DBHeightKey()'
- 'GetType()'
- 'operator='
This commit is contained in:
Zero
2020-09-22 14:38:54 +01:00
parent ed69213c2b
commit 819d03b932
3 changed files with 2 additions and 12 deletions

View File

@@ -1972,12 +1972,6 @@ struct Tracker
copies = t.copies + 1;
return *this;
}
Tracker& operator=(Tracker&& t) noexcept
{
origin = t.origin;
copies = t.copies;
return *this;
}
};
}