Remove the %S istr conversion from #fmt
I want to do the #fmt transition a different way. Issue #855
This commit is contained in:
parent
fc0212a63b
commit
9e2c5f77a4
3 changed files with 0 additions and 16 deletions
|
|
@ -243,7 +243,6 @@ fn pieces_to_expr(cx: &ext_ctxt, sp: span, pieces: &[piece],
|
|||
}
|
||||
alt cnv.ty {
|
||||
ty_str. { ret make_conv_call(cx, arg.span, ~"str", cnv, arg); }
|
||||
ty_istr. { ret make_conv_call(cx, arg.span, ~"istr", cnv, arg); }
|
||||
ty_int(sign) {
|
||||
alt sign {
|
||||
signed. { ret make_conv_call(cx, arg.span, ~"int", cnv, arg); }
|
||||
|
|
@ -300,7 +299,6 @@ fn pieces_to_expr(cx: &ext_ctxt, sp: span, pieces: &[piece],
|
|||
alt c.ty {
|
||||
ty_bool. { log "type: bool"; }
|
||||
ty_str. { log "type: str"; }
|
||||
ty_istr. { log "type: istr"; }
|
||||
ty_char. { log "type: char"; }
|
||||
ty_int(s) {
|
||||
alt s {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue