зеркало из https://github.com/mozilla/gecko-dev.git
Bug 791608 (part 4) - Fix compile warnings about ObjectImpl::getClass(). r=jwalden.
--HG-- extra : rebase_source : dc15218ede7135a3487cb31997e532abccd0d256
This commit is contained in:
Родитель
427c4d2b3d
Коммит
5f797cb17e
|
@ -5698,7 +5698,7 @@ JSObject::makeLazyType(JSContext *cx)
|
|||
if (self->isSlowArray())
|
||||
type->flags |= OBJECT_FLAG_NON_DENSE_ARRAY | OBJECT_FLAG_NON_PACKED_ARRAY;
|
||||
|
||||
if (IsTypedArrayProto(self))
|
||||
if (IsTypedArrayProtoClass(self->getClass()))
|
||||
type->flags |= OBJECT_FLAG_NON_TYPED_ARRAY;
|
||||
|
||||
self->type_ = type;
|
||||
|
|
|
@ -286,18 +286,6 @@ IsTypedArrayProtoClass(const Class *clasp)
|
|||
clasp < &TypedArray::protoClasses[TypedArray::TYPE_MAX];
|
||||
}
|
||||
|
||||
inline bool
|
||||
IsTypedArray(JSObject *obj)
|
||||
{
|
||||
return IsTypedArrayClass(obj->getClass());
|
||||
}
|
||||
|
||||
inline bool
|
||||
IsTypedArrayProto(JSObject *obj)
|
||||
{
|
||||
return IsTypedArrayProtoClass(obj->getClass());
|
||||
}
|
||||
|
||||
class DataViewObject : public JSObject
|
||||
{
|
||||
public:
|
||||
|
|
Загрузка…
Ссылка в новой задаче