From a719eaaf649313f23ea6235fc79fa9ae3405035e Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Wed, 18 Jun 2014 23:13:23 +0530 Subject: [PATCH] Update Rust --- jsval.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsval.rs b/jsval.rs index c648bc024..ffe88d80b 100644 --- a/jsval.rs +++ b/jsval.rs @@ -56,7 +56,7 @@ static JSVAL_PAYLOAD_MASK: u64 = 0x00007FFFFFFFFFFF; // JSVal was originally type of u64. // now this become {u64} because of the union abi issue on ARM arch. See #398. -#[deriving(Eq,Clone)] +#[deriving(PartialEq,Clone)] pub struct JSVal { pub v: u64 }