Index: Source/wtf/Uint32Array.h |
diff --git a/Source/wtf/Uint32Array.h b/Source/wtf/Uint32Array.h |
index 5f489853b5c1abd7ecd099bb203edabe2f890543..2278479783ee4231ecacdff2f9d141a25015fcf9 100644 |
--- a/Source/wtf/Uint32Array.h |
+++ b/Source/wtf/Uint32Array.h |
@@ -33,7 +33,7 @@ namespace WTF { |
class ArrayBuffer; |
-class Uint32Array : public IntegralTypedArrayBase<unsigned int> { |
+class Uint32Array FINAL : public IntegralTypedArrayBase<unsigned> { |
public: |
static inline PassRefPtr<Uint32Array> create(unsigned length); |
static inline PassRefPtr<Uint32Array> create(const unsigned int* array, unsigned length); |
@@ -49,7 +49,7 @@ public: |
inline PassRefPtr<Uint32Array> subarray(int start) const; |
inline PassRefPtr<Uint32Array> subarray(int start, int end) const; |
- virtual ViewType getType() const |
+ virtual ViewType getType() const OVERRIDE |
eseidel
2014/01/11 02:38:01
We normally don't use "get" in accessor names. Ma
|
{ |
return TypeUint32; |
} |