| Index: third_party/WebKit/Source/wtf/HashFunctions.h
|
| diff --git a/third_party/WebKit/Source/wtf/HashFunctions.h b/third_party/WebKit/Source/wtf/HashFunctions.h
|
| index 569282b3f780f291ff10230d0b190f7cea5e2576..362cf9469dcdb669d1c9bf500397a739786e6d87 100644
|
| --- a/third_party/WebKit/Source/wtf/HashFunctions.h
|
| +++ b/third_party/WebKit/Source/wtf/HashFunctions.h
|
| @@ -111,11 +111,11 @@ template <typename T> struct FloatHash {
|
| typedef typename IntTypes<sizeof(T)>::UnsignedType Bits;
|
| static unsigned hash(T key)
|
| {
|
| - return hashInt(bitwise_cast<Bits>(key));
|
| + return hashInt(bitwiseCast<Bits>(key));
|
| }
|
| static bool equal(T a, T b)
|
| {
|
| - return bitwise_cast<Bits>(a) == bitwise_cast<Bits>(b);
|
| + return bitwiseCast<Bits>(a) == bitwiseCast<Bits>(b);
|
| }
|
| static const bool safeToCompareToEmptyOrDeleted = true;
|
| };
|
|
|