| Index: third_party/WebKit/Source/wtf/HashCountedSet.h
|
| diff --git a/third_party/WebKit/Source/wtf/HashCountedSet.h b/third_party/WebKit/Source/wtf/HashCountedSet.h
|
| index 6d99b5fc71aca86cf385f7f8bcf21c2210367a29..6c3db07c7ebd46ec8768fcc758dca3dbcbb7b3c7 100644
|
| --- a/third_party/WebKit/Source/wtf/HashCountedSet.h
|
| +++ b/third_party/WebKit/Source/wtf/HashCountedSet.h
|
| @@ -142,7 +142,7 @@ inline bool HashCountedSet<T, U, V, W>::remove(iterator it) {
|
| return false;
|
| }
|
|
|
| - m_impl.remove(it);
|
| + m_impl.erase(it);
|
| return true;
|
| }
|
|
|
| @@ -151,7 +151,7 @@ inline void HashCountedSet<T, U, V, W>::removeAll(iterator it) {
|
| if (it == end())
|
| return;
|
|
|
| - m_impl.remove(it);
|
| + m_impl.erase(it);
|
| }
|
|
|
| template <typename Value,
|
|
|