We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54041c2 commit e711ac7Copy full SHA for e711ac7
src/libsyntax/ext/build.rs
@@ -708,9 +708,6 @@ impl<'a> AstBuilder for ExtCtxt<'a> {
708
fn expr_u8(&self, sp: Span, u: u8) -> P<ast::Expr> {
709
self.expr_lit(sp, ast::LitInt(u as u64, ast::UnsignedIntLit(ast::TyU8)))
710
}
711
- fn expr_u32(&self, sp: Span, u: u32) -> P<ast::Expr> {
712
- self.expr_lit(sp, ast::LitInt(u as u64, ast::UnsignedIntLit(ast::TyU32)))
713
- }
714
fn expr_bool(&self, sp: Span, value: bool) -> P<ast::Expr> {
715
self.expr_lit(sp, ast::LitBool(value))
716
0 commit comments