File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
branches/snap-stage3/src/libsyntax/ext Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: f0f7ca27de6b4e03f30012656dad270cda55a363
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 54041c2711c1c0931ca7a58da1119ea53dd90140
4
+ refs/heads/snap-stage3: e711ac7e759b7668932b3d6a612ba7b1600e5234
5
5
refs/heads/try: ccf8fedf1cffcb8f6f3581d53d220039e192fe77
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
Original file line number Diff line number Diff line change @@ -708,9 +708,6 @@ impl<'a> AstBuilder for ExtCtxt<'a> {
708
708
fn expr_u8 ( & self , sp : Span , u : u8 ) -> P < ast:: Expr > {
709
709
self . expr_lit ( sp, ast:: LitInt ( u as u64 , ast:: UnsignedIntLit ( ast:: TyU8 ) ) )
710
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
711
fn expr_bool ( & self , sp : Span , value : bool ) -> P < ast:: Expr > {
715
712
self . expr_lit ( sp, ast:: LitBool ( value) )
716
713
}
You can’t perform that action at this time.
0 commit comments