Skip to content

Commit b8c9d96

Browse files
committed
---
yaml --- r: 52127 b: refs/heads/dist-snap c: 1a2a897 h: refs/heads/master i: 52125: ea30475 52123: c49d45a 52119: 1ccea71 52111: 86c9d0c 52095: bd64783 v: v3
1 parent 6e3eaeb commit b8c9d96

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10-
refs/heads/dist-snap: 53f41f07ce2811a975ea6362d6a07b070d4bdf77
10+
refs/heads/dist-snap: 1a2a8975bc92b0ebae90d7d9a0cfffec08ec5cf4
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libcore/extfmt.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,12 @@ pub mod ct {
130130
}
131131

132132
// A formatted conversion from an expression to a string
133-
pub type Conv =
133+
pub struct Conv
134134
{param: Option<uint>,
135135
flags: ~[Flag],
136136
width: Count,
137137
precision: Count,
138-
ty: Ty};
138+
ty: Ty}
139139

140140

141141
// A fragment of the output sequence
@@ -208,7 +208,7 @@ pub mod ct {
208208
let prec = parse_precision(s, width.next, lim);
209209
let ty = parse_type(s, prec.next, lim, err);
210210
return {piece:
211-
PieceConv({param: parm.param,
211+
PieceConv(Conv {param: parm.param,
212212
flags: copy flags.flags,
213213
width: width.count,
214214
precision: prec.count,

0 commit comments

Comments
 (0)