diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/id_map.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/id_map.h b/base/id_map.h index acfba42..00ef16a 100644 --- a/base/id_map.h +++ b/base/id_map.h @@ -101,7 +101,7 @@ class IDMap { template<class ReturnType> class Iterator { public: - Iterator(IDMap<T>* map) + Iterator(IDMap<T, OS>* map) : map_(map), iter_(map_->data_.begin()) { ++map_->iteration_depth_; @@ -139,7 +139,7 @@ class IDMap { } } - IDMap<T>* map_; + IDMap<T, OS>* map_; typename HashTable::const_iterator iter_; }; |