Bug 714728 - Remove jsword/jsuword in favour of intptr_t/uintptr_t; r=Waldo
This commit is contained in:
@@ -701,7 +701,7 @@ GetIterator(JSContext *cx, JSObject *obj, uintN flags, Value *vp)
|
||||
goto miss;
|
||||
}
|
||||
const Shape *shape = pobj->lastProperty();
|
||||
key = (key + (key << 16)) ^ ((jsuword)shape >> 3);
|
||||
key = (key + (key << 16)) ^ (uintptr_t(shape) >> 3);
|
||||
if (!shapes.append((Shape *) shape))
|
||||
return false;
|
||||
pobj = pobj->getProto();
|
||||
|
||||
Reference in New Issue
Block a user