Compile fixes on RHEL5/Fedora, see #541

This commit is contained in:
Dennis Luxen 2013-09-24 10:33:29 +02:00
parent e1198f29ce
commit 96cc44e521

View File

@ -36,6 +36,11 @@ public:
HashTable(const unsigned size) : super(size) { }
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));
}