Index: Source/wtf/Float64Array.h |
diff --git a/Source/wtf/Float64Array.h b/Source/wtf/Float64Array.h |
index 004be378dfd64fe1887758cea91ae0d2b84a852d..216150e38cf06b91675a0db3dfe626bcbbb94417 100644 |
--- a/Source/wtf/Float64Array.h |
+++ b/Source/wtf/Float64Array.h |
@@ -32,7 +32,7 @@ |
namespace WTF { |
-class Float64Array : public TypedArrayBase<double> { |
+class Float64Array FINAL : public TypedArrayBase<double> { |
public: |
static inline PassRefPtr<Float64Array> create(unsigned length); |
static inline PassRefPtr<Float64Array> create(const double* array, unsigned length); |
@@ -54,7 +54,7 @@ public: |
inline PassRefPtr<Float64Array> subarray(int start) const; |
inline PassRefPtr<Float64Array> subarray(int start, int end) const; |
- virtual ViewType getType() const |
+ virtual ViewType getType() const OVERRIDE |
{ |
return TypeFloat64; |
} |