| 40 | { } |
| 41 | |
| 42 | MutableHashTree::~MutableHashTree() { |
| 43 | if (_root) |
| 44 | _root->deleteTree(); |
| 45 | } |
| 46 | |
| 47 | MutableHashTree& MutableHashTree::operator= (MutableHashTree &&other) noexcept { |
| 48 | _imRoot = other._imRoot; |
nothing calls this directly
no test coverage detected