| Index: Source/wtf/Float64Array.h
|
| diff --git a/Source/wtf/Float64Array.h b/Source/wtf/Float64Array.h
|
| index b6c1ce3f4feae50b62cc71fab8394d75f00f86c4..53d0473a18d6a532586dea2a210f97c62fdc2ef3 100644
|
| --- a/Source/wtf/Float64Array.h
|
| +++ b/Source/wtf/Float64Array.h
|
| @@ -51,9 +51,6 @@ public:
|
| TypedArrayBase<double>::data()[index] = static_cast<double>(value);
|
| }
|
|
|
| - inline PassRefPtr<Float64Array> subarray(int start) const;
|
| - inline PassRefPtr<Float64Array> subarray(int start, int end) const;
|
| -
|
| virtual ViewType type() const override
|
| {
|
| return TypeFloat64;
|
| @@ -82,26 +79,11 @@ PassRefPtr<Float64Array> Float64Array::create(PassRefPtr<ArrayBuffer> buffer, un
|
| return TypedArrayBase<double>::create<Float64Array>(buffer, byteOffset, length);
|
| }
|
|
|
| -PassRefPtr<Float64Array> Float64Array::createUninitialized(unsigned length)
|
| -{
|
| - return TypedArrayBase<double>::createUninitialized<Float64Array>(length);
|
| -}
|
| -
|
| Float64Array::Float64Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
|
| : TypedArrayBase<double>(buffer, byteOffset, length)
|
| {
|
| }
|
|
|
| -PassRefPtr<Float64Array> Float64Array::subarray(int start) const
|
| -{
|
| - return subarray(start, length());
|
| -}
|
| -
|
| -PassRefPtr<Float64Array> Float64Array::subarray(int start, int end) const
|
| -{
|
| - return subarrayImpl<Float64Array>(start, end);
|
| -}
|
| -
|
| } // namespace WTF
|
|
|
| using WTF::Float64Array;
|
|
|