File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
branches/auto/src/libsyntax/ext Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: 9bbf384058f93f2a36889bb11fd5332e5e02eb61
17
+ refs/heads/auto: f364cf54631fc22860d0f00fb60f6a1dea3d7fd2
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
Original file line number Diff line number Diff line change @@ -1281,13 +1281,13 @@ mod test {
1281
1281
f();
1282
1282
}
1283
1283
1284
- fn emit_map<T> (&self, f: &fn(uint) -> T) -> T {
1285
- self.add_unknown_to_log(); f(0 );
1284
+ fn emit_map(&self, _len: uint, f: &fn()) {
1285
+ self.add_unknown_to_log(); f();
1286
1286
}
1287
- fn emit_map_elt_key<T> (&self, idx : uint, f: &fn() -> T) -> T {
1287
+ fn emit_map_elt_key(&self, _idx : uint, f: &fn()) {
1288
1288
self.add_unknown_to_log(); f();
1289
1289
}
1290
- fn emit_map_elt_val<T> (&self, idx : uint, f: &fn() -> T) -> T {
1290
+ fn emit_map_elt_val(&self, _idx : uint, f: &fn()) {
1291
1291
self.add_unknown_to_log(); f();
1292
1292
}
1293
1293
}
You can’t perform that action at this time.
0 commit comments