Bug 746228 - pack JSPropertyDescriptor better on 64-bit hosts; r=luke

This commit is contained in:
Nathan Froyd 2012-04-17 13:45:38 -04:00
Родитель 6a0874a709
Коммит c946ecb523
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -3993,11 +3993,11 @@ JS_LookupPropertyWithFlagsById(JSContext *cx, JSObject *obj, jsid id,
struct JSPropertyDescriptor {
JSObject *obj;
unsigned attrs;
unsigned attrs;
unsigned shortid;
JSPropertyOp getter;
JSStrictPropertyOp setter;
jsval value;
unsigned shortid;
};
/*