fix dom bindings for android(and 32bit system) build

This commit is contained in:
aydin.kim 2013-05-27 17:01:27 +09:00
parent 730c10e6aa
commit da2ccb048e
3 changed files with 5 additions and 5 deletions

View file

@ -37,8 +37,8 @@ use js::{JSPROP_SETTER, JSVAL_VOID, JSVAL_TRUE, JSVAL_FALSE};
use js::{JS_THIS_OBJECT, JSFUN_CONSTRUCTOR, JS_CALLEE, JSPROP_READONLY};
use js;
static TOSTRING_CLASS_RESERVED_SLOT: u64 = 0;
static TOSTRING_NAME_RESERVED_SLOT: u64 = 1;
static TOSTRING_CLASS_RESERVED_SLOT: libc::size_t = 0;
static TOSTRING_NAME_RESERVED_SLOT: libc::size_t = 1;
struct GlobalStaticData {
proxy_handlers: HashMap<uint, *libc::c_void>,