| Index: third_party/WebKit/Source/wtf/BitVector.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/BitVector.cpp b/third_party/WebKit/Source/wtf/BitVector.cpp
|
| index 1523e4d173c6786483849db2f5b24932c4828a4c..2a6362eeba34b1523354a2244a71b1f1b6d98c0d 100644
|
| --- a/third_party/WebKit/Source/wtf/BitVector.cpp
|
| +++ b/third_party/WebKit/Source/wtf/BitVector.cpp
|
| @@ -42,7 +42,7 @@ void BitVector::setSlow(const BitVector& other)
|
| } else {
|
| OutOfLineBits* newOutOfLineBits = OutOfLineBits::create(other.size());
|
| memcpy(newOutOfLineBits->bits(), other.bits(), byteCount(other.size()));
|
| - newBitsOrPointer = bitwise_cast<uintptr_t>(newOutOfLineBits) >> 1;
|
| + newBitsOrPointer = bitwiseCast<uintptr_t>(newOutOfLineBits) >> 1;
|
| }
|
| if (!isInline())
|
| OutOfLineBits::destroy(outOfLineBits());
|
| @@ -108,7 +108,7 @@ void BitVector::resizeOutOfLine(size_t numBits)
|
| }
|
| OutOfLineBits::destroy(outOfLineBits());
|
| }
|
| - m_bitsOrPointer = bitwise_cast<uintptr_t>(newOutOfLineBits) >> 1;
|
| + m_bitsOrPointer = bitwiseCast<uintptr_t>(newOutOfLineBits) >> 1;
|
| }
|
|
|
| void BitVector::dump(PrintStream& out)
|
|
|