| 635 | // --------------- |
| 636 | |
| 637 | HashTable::HashTable(bool ownerOfKeys, bool ownerOfValues, int tableSize) : |
| 638 | HashSet (ownerOfKeys, tableSize) |
| 639 | { |
| 640 | this->ownerOfValues = ownerOfValues; |
| 641 | } |
| 642 | |
| 643 | HashTable::~HashTable() |
| 644 | { |
nothing calls this directly
no outgoing calls
no test coverage detected