| Index: Source/wtf/text/AtomicString.cpp
|
| diff --git a/Source/wtf/text/AtomicString.cpp b/Source/wtf/text/AtomicString.cpp
|
| index 4d14b106e6cd5f70cc9e460b4da7a95d2d17fee8..973cae9f6aea4383241d795dc35efd107ffd8906 100644
|
| --- a/Source/wtf/text/AtomicString.cpp
|
| +++ b/Source/wtf/text/AtomicString.cpp
|
| @@ -76,7 +76,7 @@ static inline HashSet<StringImpl*>& stringTable()
|
| template<typename T, typename HashTranslator>
|
| static inline PassRefPtr<StringImpl> addToStringTable(const T& value)
|
| {
|
| - HashSet<StringImpl*>::AddResult addResult = stringTable().add<T, HashTranslator>(value);
|
| + HashSet<StringImpl*>::AddResult addResult = stringTable().add<HashTranslator>(value);
|
|
|
| // If the string is newly-translated, then we need to adopt it.
|
| // The boolean in the pair tells us if that is so.
|
| @@ -394,7 +394,7 @@ template<typename CharacterType>
|
| static inline HashSet<StringImpl*>::iterator findString(const StringImpl* stringImpl)
|
| {
|
| HashAndCharacters<CharacterType> buffer = { stringImpl->existingHash(), stringImpl->getCharacters<CharacterType>(), stringImpl->length() };
|
| - return stringTable().find<HashAndCharacters<CharacterType>, HashAndCharactersTranslator<CharacterType> >(buffer);
|
| + return stringTable().find<HashAndCharactersTranslator<CharacterType> >(buffer);
|
| }
|
|
|
| AtomicStringImpl* AtomicString::find(const StringImpl* stringImpl)
|
|
|