diff --git a/src/util/hashtable.h b/src/util/hashtable.h index fe51963e0..fbf36242b 100644 --- a/src/util/hashtable.h +++ b/src/util/hashtable.h @@ -581,7 +581,7 @@ public: core_hashtable& operator=(core_hashtable const& other) { if (this == &other) return *this; reset(); - core_hashtable::iterator i = other.begin(), e = other.end(); + iterator i = other.begin(), e = other.end(); for (; i != e; ++i) { insert(*i); }