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