deactivate dead code

This commit is contained in:
Dennis Luxen 2013-12-19 19:19:26 +01:00
parent 81d8c8f9bf
commit a26d982f52

View File

@ -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));