Bug 1273669. Make JS::CustomAutoRooter::Inner final. r=billm

Fixes clang virtual destructor warnings.
This commit is contained in:
Jeff Muizelaar 2016-05-24 15:38:18 -04:00
Родитель ebee24e8a7
Коммит 09c622e96b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1010,7 +1010,7 @@ StackBaseShape::StackBaseShape(Shape* shape)
class MOZ_RAII AutoRooterGetterSetter class MOZ_RAII AutoRooterGetterSetter
{ {
class Inner : private JS::CustomAutoRooter class Inner final : private JS::CustomAutoRooter
{ {
public: public:
inline Inner(ExclusiveContext* cx, uint8_t attrs, GetterOp* pgetter_, SetterOp* psetter_); inline Inner(ExclusiveContext* cx, uint8_t attrs, GetterOp* pgetter_, SetterOp* psetter_);