diff --git a/DataStructures/HashTable.h b/DataStructures/HashTable.h index f1c5a3210..7acfb22ae 100644 --- a/DataStructures/HashTable.h +++ b/DataStructures/HashTable.h @@ -40,10 +40,10 @@ public: HashTable(const unsigned size) : super(size) { } - HashTable &operator=(const HashTable &other) { - super::operator = (other); - return *this; - } + // HashTable &operator=(const HashTable &other) { + // super::operator = (other); + // return *this; + // } inline void Add(const keyT& key, const valueT& value){ super::insert(std::make_pair(key, value));