Skip to content

Commit d491ccf

Browse files
committed
---
yaml --- r: 52711 b: refs/heads/dist-snap c: b4f47ec h: refs/heads/master i: 52709: dab9dcb 52707: 26bc753 52703: 3e0efd7 v: v3
1 parent 3dc8da1 commit d491ccf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
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: 1c9b5a83b27aae5017c1c82f5c9d3876b20d4c37
10+
refs/heads/dist-snap: b4f47eca2a99c1ead824e9cf85b12d9efc14eabb
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libstd/bitv.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ impl SmallBitv {
106106

107107
struct BigBitv {
108108
// only mut b/c of clone and lack of other constructor
109-
mut storage: ~[mut uint]
109+
mut storage: ~[uint]
110110
}
111111

112112
fn BigBitv(storage: ~[mut uint]) -> BigBitv {

branches/dist-snap/src/libstd/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ pub mod chained {
144144

145145
struct HashMap_<K, V> {
146146
mut count: uint,
147-
mut chains: ~[mut Option<@Entry<K,V>>]
147+
mut chains: ~[Option<@Entry<K,V>>]
148148
}
149149

150150
pub type T<K, V> = @HashMap_<K, V>;

branches/dist-snap/src/libsyntax/print/pp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ pub type printer_ = {
264264
// BEGIN (if there is any) on top of it. Stuff is flushed off the
265265
// bottom as it becomes irrelevant due to the primary ring-buffer
266266
// advancing.
267-
mut scan_stack: ~[mut uint],
267+
mut scan_stack: ~[uint],
268268
mut scan_stack_empty: bool, // top==bottom disambiguator
269269
mut top: uint, // index of top of scan_stack
270270
mut bottom: uint, // index of bottom of scan_stack

branches/dist-snap/src/test/compile-fail/mutable-huh-variance-vec2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn main() {
1212
// Note: explicit type annot is required here
1313
// because otherwise the inference gets smart
1414
// and assigns a type of ~[mut ~[const int]].
15-
let mut v: ~[mut ~[mut int]] = ~[~[0]];
15+
let mut v: ~[~[mut int]] = ~[~[0]];
1616

1717
fn f(&&v: ~[mut ~[const int]]) {
1818
v[0] = ~[3]

branches/dist-snap/src/test/compile-fail/mutable-huh-variance-vec3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn main() {
1212
// Note: explicit type annot is required here
1313
// because otherwise the inference gets smart
1414
// and assigns a type of ~[mut ~[const int]].
15-
let mut v: ~[mut ~[mut ~[int]]] = ~[~[~[0]]];
15+
let mut v: ~[~[mut ~[int]]] = ~[~[~[0]]];
1616

1717
fn f(&&v: ~[mut ~[mut ~[const int]]]) {
1818
v[0][1] = ~[mut 3]

0 commit comments

Comments
 (0)