| Index: Source/wtf/text/StringHash.h
|
| diff --git a/Source/wtf/text/StringHash.h b/Source/wtf/text/StringHash.h
|
| index 2bf60b2ed3f3ec96da42409584e2cfe272152077..3b54b7a9fe4708a00a9bfe9e5104588e6f728814 100644
|
| --- a/Source/wtf/text/StringHash.h
|
| +++ b/Source/wtf/text/StringHash.h
|
| @@ -67,7 +67,7 @@ namespace WTF {
|
| public:
|
| static unsigned hash(const UChar* data, unsigned length)
|
| {
|
| - return StringHasher::computeHashAndMaskTop8Bits<UChar, foldCase<UChar> >(data, length);
|
| + return StringHasher::computeHashAndMaskTop8Bits<UChar, foldCase<UChar>>(data, length);
|
| }
|
|
|
| static unsigned hash(StringImpl* str)
|
| @@ -79,7 +79,7 @@ namespace WTF {
|
|
|
| static unsigned hash(const LChar* data, unsigned length)
|
| {
|
| - return StringHasher::computeHashAndMaskTop8Bits<LChar, foldCase<LChar> >(data, length);
|
| + return StringHasher::computeHashAndMaskTop8Bits<LChar, foldCase<LChar>>(data, length);
|
| }
|
|
|
| static inline unsigned hash(const char* data, unsigned length)
|
|
|