Index: base/containers/scoped_ptr_hash_map.h |
diff --git a/base/containers/scoped_ptr_hash_map.h b/base/containers/scoped_ptr_hash_map.h |
index 8d92b390661dda0393d3a744d76edacc31f8b74c..b636e604a5a75a9adfceef88ade5b818d4647e22 100644 |
--- a/base/containers/scoped_ptr_hash_map.h |
+++ b/base/containers/scoped_ptr_hash_map.h |
@@ -139,7 +139,7 @@ class ScopedPtrHashMap { |
inline bool empty() const { return data_.empty(); } |
inline size_t bucket_count() const { return data_.bucket_count(); } |
- inline void resize(size_t size) const { return data_.resize(size); } |
+ inline void resize(size_t size) { return data_.resize(size); } |
inline iterator begin() { return data_.begin(); } |
inline const_iterator begin() const { return data_.begin(); } |