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 2
2
refs/heads/master: 19dfec2aaf746535de1521f68421f9980dbf25de
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5
- refs/heads/try: 1c9b5a83b27aae5017c1c82f5c9d3876b20d4c37
5
+ refs/heads/try: b4f47eca2a99c1ead824e9cf85b12d9efc14eabb
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
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