Skip to content

Commit 8661f21

Browse files
committed
---
yaml --- r: 42829 b: refs/heads/try c: b4f47ec h: refs/heads/master i: 42827: 2910ee5 v: v3
1 parent 0a04a50 commit 8661f21

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 19dfec2aaf746535de1521f68421f9980dbf25de
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5-
refs/heads/try: 1c9b5a83b27aae5017c1c82f5c9d3876b20d4c37
5+
refs/heads/try: b4f47eca2a99c1ead824e9cf85b12d9efc14eabb
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/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/try/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/try/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/try/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/try/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)