Index: Source/wtf/HashFunctions.h |
diff --git a/Source/wtf/HashFunctions.h b/Source/wtf/HashFunctions.h |
index 1768f67dac3f3a7fd592a13120870d888db66b30..4f2671e145a1f3710de5dc8b5741c07ed76457f0 100644 |
--- a/Source/wtf/HashFunctions.h |
+++ b/Source/wtf/HashFunctions.h |
@@ -61,7 +61,7 @@ namespace WTF { |
} |
// Thomas Wang's 32 Bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm |
- inline unsigned intHash(uint32_t key) |
+ inline unsigned intHash(uint32_t key) |
{ |
key += ~(key << 15); |
key ^= (key >> 10); |
@@ -71,7 +71,7 @@ namespace WTF { |
key ^= (key >> 16); |
return key; |
} |
- |
+ |
// Thomas Wang's 64 bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm |
inline unsigned intHash(uint64_t key) |
{ |
@@ -156,7 +156,7 @@ namespace WTF { |
{ |
return DefaultHash<T>::Hash::equal(a.first, b.first) && DefaultHash<U>::Hash::equal(a.second, b.second); |
} |
- static const bool safeToCompareToEmptyOrDeleted = DefaultHash<T>::Hash::safeToCompareToEmptyOrDeleted |
+ static const bool safeToCompareToEmptyOrDeleted = DefaultHash<T>::Hash::safeToCompareToEmptyOrDeleted |
&& DefaultHash<U>::Hash::safeToCompareToEmptyOrDeleted; |
}; |