Fix for windows build bustage

This commit is contained in:
Ben Turner 2009-03-19 17:19:19 -07:00
parent 3b7ccb55b7
commit 364e0e0d6a
2 changed files with 4 additions and 4 deletions

View File

@ -1689,7 +1689,7 @@ js_HasOwnProperty(JSContext *cx, JSLookupPropOp lookup, JSObject *obj, jsid id,
}
#ifdef JS_TRACER
static int32 FASTCALL
static JSBool FASTCALL
Object_p_hasOwnProperty(JSContext* cx, JSObject* obj, JSString *str)
{
jsid id;
@ -1735,7 +1735,7 @@ obj_propertyIsEnumerable(JSContext *cx, uintN argc, jsval *vp)
}
#ifdef JS_TRACER
static int32 FASTCALL
static JSBool FASTCALL
Object_p_propertyIsEnumerable(JSContext* cx, JSObject* obj, JSString *str)
{
jsid id = ATOM_TO_JSID(STRING_TO_JSVAL(str));

View File

@ -7223,7 +7223,7 @@ SetProperty(JSContext *cx, uintN argc, jsval *vp)
return JS_TRUE;
}
static int32 FASTCALL
static JSBool FASTCALL
SetProperty_tn(JSContext* cx, JSObject* obj, JSString* idstr, jsval v)
{
JSAutoTempValueRooter tvr(cx, v);
@ -7254,7 +7254,7 @@ SetElement(JSContext *cx, uintN argc, jsval *vp)
return JS_TRUE;
}
static int32 FASTCALL
static JSBool FASTCALL
SetElement_tn(JSContext* cx, JSObject* obj, int32 index, jsval v)
{
JSAutoTempIdRooter idr(cx);