Index: Source/wtf/Int16Array.h |
diff --git a/Source/wtf/Int16Array.h b/Source/wtf/Int16Array.h |
index d3289b71ed4b5bdad9aed22b6424e8fd2b520e8c..f0b1dfccf1ae841ce659596cfd0c279c873baf2e 100644 |
--- a/Source/wtf/Int16Array.h |
+++ b/Source/wtf/Int16Array.h |
@@ -32,7 +32,7 @@ namespace WTF { |
class ArrayBuffer; |
-class Int16Array : public IntegralTypedArrayBase<short> { |
+class Int16Array FINAL : public IntegralTypedArrayBase<short> { |
public: |
static inline PassRefPtr<Int16Array> create(unsigned length); |
static inline PassRefPtr<Int16Array> create(const short* array, unsigned length); |
@@ -48,7 +48,7 @@ public: |
inline PassRefPtr<Int16Array> subarray(int start) const; |
inline PassRefPtr<Int16Array> subarray(int start, int end) const; |
- virtual ViewType getType() const |
+ virtual ViewType getType() const OVERRIDE |
{ |
return TypeInt16; |
} |