Skip to content

Commit 2a70e88

Browse files
committed
---
yaml --- r: 97384 b: refs/heads/dist-snap c: 12ad1b0 h: refs/heads/master v: v3
1 parent d1ee029 commit 2a70e88

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: 522a68d5bcf8129621cc230b32b4d221c4200198
9+
refs/heads/dist-snap: 12ad1b0662aed1f2f1b23d6c4a0a2cf43c92200a
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub struct ps {
7272
intr: @token::ident_interner,
7373
comments: Option<~[comments::cmnt]>,
7474
literals: Option<~[comments::lit]>,
75-
cur_cmnt_and_lit: @mut CurrentCommentAndLiteral,
75+
cur_cmnt_and_lit: CurrentCommentAndLiteral,
7676
boxes: @mut ~[pp::breaks],
7777
ann: @pp_ann
7878
}
@@ -101,7 +101,7 @@ pub fn rust_printer_annotated(writer: ~io::Writer,
101101
intr: intr,
102102
comments: None::<~[comments::cmnt]>,
103103
literals: None::<~[comments::lit]>,
104-
cur_cmnt_and_lit: @mut CurrentCommentAndLiteral {
104+
cur_cmnt_and_lit: CurrentCommentAndLiteral {
105105
cur_cmnt: 0,
106106
cur_lit: 0
107107
},
@@ -144,7 +144,7 @@ pub fn print_crate(cm: @CodeMap,
144144
} else {
145145
Some(lits)
146146
},
147-
cur_cmnt_and_lit: @mut CurrentCommentAndLiteral {
147+
cur_cmnt_and_lit: CurrentCommentAndLiteral {
148148
cur_cmnt: 0,
149149
cur_lit: 0
150150
},

0 commit comments

Comments
 (0)