deactivate dead code
This commit is contained in:
parent
81d8c8f9bf
commit
a26d982f52
@ -40,10 +40,10 @@ public:
|
|||||||
|
|
||||||
HashTable(const unsigned size) : super(size) { }
|
HashTable(const unsigned size) : super(size) { }
|
||||||
|
|
||||||
HashTable &operator=(const HashTable &other) {
|
// HashTable &operator=(const HashTable &other) {
|
||||||
super::operator = (other);
|
// super::operator = (other);
|
||||||
return *this;
|
// return *this;
|
||||||
}
|
// }
|
||||||
|
|
||||||
inline void Add(const keyT& key, const valueT& value){
|
inline void Add(const keyT& key, const valueT& value){
|
||||||
super::insert(std::make_pair(key, value));
|
super::insert(std::make_pair(key, value));
|
||||||
|
Loading…
Reference in New Issue
Block a user