Skip to content

Commit

Permalink
deactivate dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisOSRM committed Dec 19, 2013
1 parent 81d8c8f commit a26d982
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions DataStructures/HashTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ class HashTable : public boost::unordered_map<keyT, valueT> {

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));
Expand Down

0 comments on commit a26d982

Please sign in to comment.