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

@@ -51,7 +51,6 @@ struct DBVal {
struct DBHeightKey {
int height;
DBHeightKey() : height(0) {}
explicit DBHeightKey(int height_in) : height(height_in) {}
template<typename Stream>