Bug 902332 - Replace JS_{FALSE,TRUE} with {false,true} almost everywhere. r=luke,bz.

This commit is contained in:
Nicholas Nethercote
2013-08-06 23:59:54 -07:00
parent f6dcbb4491
commit f30b759645
80 changed files with 729 additions and 736 deletions

View File

@@ -358,14 +358,14 @@ JSBool
UnknownPropertyStub(JSContext *cx, HandleObject obj, HandleId id, MutableHandleValue vp)
{
JS_ReportError(cx, "getter could not be wrapped via CPOWs");
return JS_FALSE;
return false;
}
JSBool
UnknownStrictPropertyStub(JSContext *cx, HandleObject obj, HandleId id, JSBool strict, MutableHandleValue vp)
{
JS_ReportError(cx, "setter could not be wrapped via CPOWs");
return JS_FALSE;
return false;
}
bool