Change i128 to i64
This commit is contained in:
parent
39b7827065
commit
3ca87f0fc1
|
@ -72,7 +72,7 @@ impl types::Type {
|
||||||
|
|
||||||
fn owned_type_ident(&self) -> TokenStream {
|
fn owned_type_ident(&self) -> TokenStream {
|
||||||
let owned_type = match self {
|
let owned_type = match self {
|
||||||
types::Type::Number(_) => quote! { i128 },
|
types::Type::Number(_) => quote! { i64 },
|
||||||
types::Type::Float(_) => quote! { f32 },
|
types::Type::Float(_) => quote! { f32 },
|
||||||
types::Type::Bool(_) => quote! { bool },
|
types::Type::Bool(_) => quote! { bool },
|
||||||
types::Type::String(_) => quote! { String },
|
types::Type::String(_) => quote! { String },
|
||||||
|
|
Loading…
Reference in New Issue
Block a user