Index: Source/wtf/HashCountedSet.h |
diff --git a/Source/wtf/HashCountedSet.h b/Source/wtf/HashCountedSet.h |
index fbd71d228b4b3aadc172794ec7899f38589a499c..18dbd321079c2746d64cb984e8af09b73d6f0aab 100644 |
--- a/Source/wtf/HashCountedSet.h |
+++ b/Source/wtf/HashCountedSet.h |
@@ -154,7 +154,7 @@ namespace WTF { |
inline typename HashCountedSet<Value, HashFunctions, Traits>::AddResult HashCountedSet<Value, HashFunctions, Traits>::add(const ValueType &value) |
{ |
AddResult result = m_impl.add(value, 0); |
- ++result.iterator->value; |
+ ++result.storedValue->value; |
return result; |
} |