File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
9
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10
- refs/heads/dist-snap: 1c9b5a83b27aae5017c1c82f5c9d3876b20d4c37
10
+ refs/heads/dist-snap: b4f47eca2a99c1ead824e9cf85b12d9efc14eabb
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
13
13
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ impl SmallBitv {
106
106
107
107
struct BigBitv {
108
108
// only mut b/c of clone and lack of other constructor
109
- mut storage : ~[ mut uint ]
109
+ mut storage : ~[ uint ]
110
110
}
111
111
112
112
fn BigBitv ( storage : ~[ mut uint ] ) -> BigBitv {
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ pub mod chained {
144
144
145
145
struct HashMap_ < K , V > {
146
146
mut count : uint ,
147
- mut chains : ~[ mut Option < @Entry < K , V > > ]
147
+ mut chains : ~[ Option < @Entry < K , V > > ]
148
148
}
149
149
150
150
pub type T < K , V > = @HashMap_ < K , V > ;
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ pub type printer_ = {
264
264
// BEGIN (if there is any) on top of it. Stuff is flushed off the
265
265
// bottom as it becomes irrelevant due to the primary ring-buffer
266
266
// advancing.
267
- mut scan_stack : ~[ mut uint ] ,
267
+ mut scan_stack : ~[ uint ] ,
268
268
mut scan_stack_empty : bool , // top==bottom disambiguator
269
269
mut top : uint , // index of top of scan_stack
270
270
mut bottom : uint , // index of bottom of scan_stack
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ fn main() {
12
12
// Note: explicit type annot is required here
13
13
// because otherwise the inference gets smart
14
14
// and assigns a type of ~[mut ~[const int]].
15
- let mut v: ~[ mut ~[ mut int] ] = ~[ ~[ 0 ] ] ;
15
+ let mut v: ~[ ~[ mut int] ] = ~[ ~[ 0 ] ] ;
16
16
17
17
fn f ( & & v: ~[ mut ~[ const int ] ] ) {
18
18
v[ 0 ] = ~[ 3 ]
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ fn main() {
12
12
// Note: explicit type annot is required here
13
13
// because otherwise the inference gets smart
14
14
// and assigns a type of ~[mut ~[const int]].
15
- let mut v: ~[ mut ~[ mut ~[ int ] ] ] = ~[ ~[ ~[ 0 ] ] ] ;
15
+ let mut v: ~[ ~[ mut ~[ int ] ] ] = ~[ ~[ ~[ 0 ] ] ] ;
16
16
17
17
fn f ( & & v: ~[ mut ~[ mut ~[ const int ] ] ] ) {
18
18
v[ 0 ] [ 1 ] = ~[ mut 3 ]
You can’t perform that action at this time.
0 commit comments