зеркало из https://github.com/mozilla/pjs.git
Bug 683361 - quell GCC over-warning from 90ff7402febc (r=me)
This commit is contained in:
Родитель
cf8c5380b9
Коммит
69e35f7c39
|
@ -1720,8 +1720,10 @@ NonGenericMethodGuard(JSContext *cx, CallArgs args, Class *clasp, bool *ok)
|
|||
const Value &thisv = args.thisv();
|
||||
if (thisv.isObject()) {
|
||||
JSObject &obj = thisv.toObject();
|
||||
if (obj.getClass() == clasp)
|
||||
if (obj.getClass() == clasp) {
|
||||
*ok = true; /* quell gcc overwarning */
|
||||
return &obj;
|
||||
}
|
||||
}
|
||||
|
||||
*ok = HandleNonGenericMethodClassMismatch(cx, args, clasp);
|
||||
|
|
Загрузка…
Ссылка в новой задаче