Chromium Code Reviews| Index: cc/scoped_ptr_hash_map.h |
| diff --git a/cc/scoped_ptr_hash_map.h b/cc/scoped_ptr_hash_map.h |
| index c314ed52e5684729d49ba862f72a138f48b04808..44e80d1a84e93459405ca7891cfde37d03713c4d 100644 |
| --- a/cc/scoped_ptr_hash_map.h |
| +++ b/cc/scoped_ptr_hash_map.h |
| @@ -122,10 +122,11 @@ class ScopedPtrHashMap { |
| inline iterator find(const Key& k) { return data_.find(k); } |
| inline size_t count(const Key& k) const { return data_.count(k); } |
| - inline pair<const_iterator, const_iterator> equal_range(const Key& k) const { |
| + inline std::pair<const_iterator, const_iterator> equal_range( |
|
jamesr
2012/09/26 00:00:21
hah, whoops! guessing this just wasn't referenced
danakj
2012/09/26 00:03:50
I think removing some header that was using std::p
|
| + const Key& k) const { |
| return data_.equal_range(k); |
| } |
| - inline pair<iterator, iterator> equal_range(const Key& k) { |
| + inline std::pair<iterator, iterator> equal_range(const Key& k) { |
| return data_.equal_range(k); |
| } |