Bug 1242210 - Mark RootedTypedArray as final; r=baku

This commit is contained in:
Ehsan Akhgari 2016-01-23 18:16:28 -05:00
Родитель c12302354f
Коммит 4923320e0a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -412,8 +412,8 @@ private:
// Class for easily setting up a rooted typed array object on the stack
template<typename ArrayType>
class MOZ_RAII RootedTypedArray : public ArrayType,
private TypedArrayRooter<ArrayType>
class MOZ_RAII RootedTypedArray final : public ArrayType,
private TypedArrayRooter<ArrayType>
{
public:
explicit RootedTypedArray(JSContext* cx MOZ_GUARD_OBJECT_NOTIFIER_PARAM) :