From ceda48988daadde7f32dd9e53d025fe4dfdf667a Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Tue, 20 Oct 2020 16:20:27 -0700 Subject: [PATCH] Update IntValue alias to be i128 instead of i64 to get us a lil more range Signed-off-by: Alek Ratzloff --- src/obj/int.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obj/int.rs b/src/obj/int.rs index d221213..79670c8 100644 --- a/src/obj/int.rs +++ b/src/obj/int.rs @@ -4,7 +4,7 @@ use shredder::Scan; use std::fmt::{Debug, Formatter, self}; pub type IntRef = ObjRef; -pub type IntValue = i64; +pub type IntValue = i128; #[derive(Scan)] pub struct Int {