Skip to content

Commit 7e7dd56

Browse files
committed
---
yaml --- r: 52712 b: refs/heads/dist-snap c: 3e95a13 h: refs/heads/master v: v3
1 parent d491ccf commit 7e7dd56

File tree

6 files changed

+8
-8
lines changed

6 files changed

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

branches/dist-snap/src/librustc/middle/liveness.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -640,8 +640,8 @@ struct Liveness {
640640
tcx: ty::ctxt,
641641
ir: @IrMaps,
642642
s: Specials,
643-
successors: ~[mut LiveNode],
644-
users: ~[mut users],
643+
mut successors: ~[LiveNode],
644+
mut users: ~[users],
645645
// The list of node IDs for the nested loop scopes
646646
// we're in.
647647
loop_scope: DVec<node_id>,

branches/dist-snap/src/librustc/middle/trans/type_use.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub const use_repr: uint = 1u; /* Dependency on size/alignment/mode and
4949
take/drop glue */
5050
pub const use_tydesc: uint = 2u; /* Takes the tydesc, or compares */
5151

52-
pub type ctx = {ccx: @crate_ctxt, uses: ~[mut type_uses]};
52+
pub type ctx = {ccx: @crate_ctxt, mut uses: ~[type_uses]};
5353

5454
pub fn type_uses_for(ccx: @crate_ctxt, fn_id: def_id, n_tps: uint)
5555
-> ~[type_uses] {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,7 @@ pub mod node {
11581158
use core::vec;
11591159

11601160
pub struct T {
1161-
stack: ~[mut @Node],
1161+
mut stack: ~[@Node],
11621162
mut stackpos: int,
11631163
}
11641164

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub fn sha1() -> Sha1 {
7070
{h: ~[mut u32],
7171
mut len_low: u32,
7272
mut len_high: u32,
73-
msg_block: ~[mut u8],
73+
mut msg_block: ~[u8],
7474
mut msg_block_idx: uint,
7575
mut computed: bool,
7676
work_buf: @~[mut u32]};

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ pub type printer_ = {
254254
mut space: int, // number of spaces left on line
255255
mut left: uint, // index of left side of input stream
256256
mut right: uint, // index of right side of input stream
257-
token: ~[mut token], // ring-buffr stream goes through
258-
size: ~[mut int], // ring-buffer of calculated sizes
257+
mut token: ~[token], // ring-buffr stream goes through
258+
mut size: ~[int], // ring-buffer of calculated sizes
259259
mut left_total: int, // running size of stream "...left"
260260
mut right_total: int, // running size of stream "...right"
261261
// pseudo-stack, really a ring too. Holds the

0 commit comments

Comments
 (0)