diff --git a/kernel/hashlib.h b/kernel/hashlib.h index 5e00e89d..72e9bc2e 100644 --- a/kernel/hashlib.h +++ b/kernel/hashlib.h @@ -287,7 +287,7 @@ class dict } public: - class const_iterator + class const_iterator : public std::iterator> { friend class dict; protected: @@ -304,7 +304,7 @@ public: const std::pair *operator->() const { return &ptr->entries[index].udata; } }; - class iterator + class iterator : public std::iterator> { friend class dict; protected: @@ -609,7 +609,7 @@ class pool } public: - class const_iterator + class const_iterator : public std::iterator { friend class pool; protected: @@ -625,7 +625,7 @@ public: const K *operator->() const { return &ptr->entries[index].udata; } }; - class iterator + class iterator : public std::iterator { friend class pool; protected: