File tree Expand file tree Collapse file tree 2 files changed +2
-19
lines changed Expand file tree Collapse file tree 2 files changed +2
-19
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 53df58a177365703ef7a798ffb3c468cb7d1a5ae
2
+ refs/heads/master: c95e3ab6a8bdaf5c73b7addbda5af0e2e7e24a10
Original file line number Diff line number Diff line change @@ -270,23 +270,6 @@ mod rt {
270
270
// instead just use a bool per flag
271
271
type conv = { flags : [ flag ] , width : count , precision : count , ty: ty} ;
272
272
273
- // FIXME: Remove these transitional *_ivec interfaces
274
- fn conv_int_ivec ( cv : & conv , i : int ) -> str {
275
- conv_int ( cv, i)
276
- }
277
- fn conv_uint_ivec ( cv : & conv , u : uint ) -> str {
278
- conv_uint ( cv, u)
279
- }
280
- fn conv_bool_ivec ( cv : & conv , b : bool ) -> str {
281
- conv_bool ( cv, b)
282
- }
283
- fn conv_char_ivec ( cv : & conv , c : char ) -> str {
284
- conv_char ( cv, c)
285
- }
286
- fn conv_str_ivec ( cv : & conv , s : str ) -> str {
287
- conv_str ( cv, s)
288
- }
289
-
290
273
fn conv_int ( cv : & conv , i : int ) -> str {
291
274
let radix = 10 u;
292
275
let prec = get_int_precision ( cv) ;
@@ -317,7 +300,7 @@ mod rt {
317
300
// run the boolean conversion through the string conversion logic,
318
301
// giving it the same rules for precision, etc.
319
302
320
- ret conv_str_ivec ( cv, s) ;
303
+ ret conv_str ( cv, s) ;
321
304
}
322
305
fn conv_char ( cv : & conv , c : char ) -> str {
323
306
ret pad ( cv, str:: from_char ( c) , pad_nozero) ;
You can’t perform that action at this time.
0 commit comments