@@ -103,7 +103,7 @@ impl<'a, I: Iterator<Item = B> + Clone, B: Borrow<Item<'a>>> DelayedFormat<I> {
103
103
Item :: Literal ( s) | Item :: Space ( s) => w. write_str ( s) ,
104
104
#[ cfg( feature = "alloc" ) ]
105
105
Item :: OwnedLiteral ( ref s) | Item :: OwnedSpace ( ref s) => w. write_str ( s) ,
106
- Item :: Numeric ( ref spec, ref pad) => self . format_numeric ( w, spec, pad) ,
106
+ Item :: Numeric ( ref spec, pad) => self . format_numeric ( w, spec, pad) ,
107
107
Item :: Fixed ( ref spec) => self . format_fixed ( w, spec) ,
108
108
Item :: Error => Err ( fmt:: Error ) ,
109
109
} ?;
@@ -112,7 +112,7 @@ impl<'a, I: Iterator<Item = B> + Clone, B: Borrow<Item<'a>>> DelayedFormat<I> {
112
112
}
113
113
114
114
#[ cfg( feature = "alloc" ) ]
115
- fn format_numeric ( & self , w : & mut impl Write , spec : & Numeric , pad : & Pad ) -> fmt:: Result {
115
+ fn format_numeric ( & self , w : & mut impl Write , spec : & Numeric , pad : Pad ) -> fmt:: Result {
116
116
use self :: Numeric :: * ;
117
117
118
118
let ( width, v) = match ( spec, self . date , self . time ) {
0 commit comments