| Index: Source/wtf/HashTable.h
|
| diff --git a/Source/wtf/HashTable.h b/Source/wtf/HashTable.h
|
| index 41d4397597855cea4132638ff52c38d7e4665aea..8e6d120577d30dd80a8e94028874b6dd94e771dd 100644
|
| --- a/Source/wtf/HashTable.h
|
| +++ b/Source/wtf/HashTable.h
|
| @@ -299,7 +299,7 @@ namespace WTF {
|
| typedef Value ValueType;
|
| typedef Extractor ExtractorType;
|
| typedef KeyTraits KeyTraitsType;
|
| - typedef typename Traits::PeekInType ValuePeekInType;
|
| + typedef typename Traits::PassInType ValuePassInType;
|
| typedef IdentityHashTranslator<HashFunctions> IdentityTranslatorType;
|
| typedef HashTableAddResult<HashTable, ValueType> AddResult;
|
|
|
| @@ -374,7 +374,7 @@ namespace WTF {
|
| unsigned capacity() const { return m_tableSize; }
|
| bool isEmpty() const { return !m_keyCount; }
|
|
|
| - AddResult add(ValuePeekInType value)
|
| + AddResult add(ValuePassInType value)
|
| {
|
| return add<IdentityTranslatorType>(Extractor::extract(value), value);
|
| }
|
|
|