commit | 30e3589b067eca5976b0e6d81f3aed63b9650682 | [log] [tgz] |
---|---|---|
author | Michael Layzell <michael@thelayzells.com> | Wed May 31 19:49:31 2017 -0400 |
committer | Michael Layzell <michael@thelayzells.com> | Wed May 31 19:50:30 2017 -0400 |
tree | cdfb5763d645931b128a59963b7cc1c4cf15eb08 | |
parent | 98afa0e6389a1cb0c78d3d863eba7a8b9db0aead [diff] [blame] |
Accept u128 and i128 suffixes when parsing integers
diff --git a/src/stable.rs b/src/stable.rs index bea0180..1f2227c 100644 --- a/src/stable.rs +++ b/src/stable.rs
@@ -824,6 +824,8 @@ | tag!("i64") => { |_| () } | + tag!("i128") => { |_| () } + | tag!("usize") => { |_| () } | tag!("u8") => { |_| () } @@ -834,6 +836,8 @@ | tag!("u64") => { |_| () } | + tag!("u128") => { |_| () } + | epsilon!() ) >> (())