Update IntValue alias to be i128 instead of i64 to get us a lil more range

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2020-10-20 16:20:27 -07:00
parent 9169f5970e
commit ceda48988d

View File

@@ -4,7 +4,7 @@ use shredder::Scan;
use std::fmt::{Debug, Formatter, self};
pub type IntRef = ObjRef<Int>;
pub type IntValue = i64;
pub type IntValue = i128;
#[derive(Scan)]
pub struct Int {