aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/proc_macro_srv/src/rustc_server.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/proc_macro_srv/src/rustc_server.rs b/crates/proc_macro_srv/src/rustc_server.rs
index 25606da60..a8504f762 100644
--- a/crates/proc_macro_srv/src/rustc_server.rs
+++ b/crates/proc_macro_srv/src/rustc_server.rs
@@ -506,8 +506,7 @@ impl server::Literal for Rustc {
506 } 506 }
507 } 507 }
508 508
509 let text = 509 let text = def_suffixed_integer! {kind, u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128, isize};
510 def_suffixed_integer! {kind, u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128};
511 510
512 Literal { text: text.into(), id: tt::TokenId::unspecified() } 511 Literal { text: text.into(), id: tt::TokenId::unspecified() }
513 } 512 }