File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
branches/dist-snap/src/libsyntax/print Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/dist-snap: 522a68d5bcf8129621cc230b32b4d221c4200198
9
+ refs/heads/dist-snap: 12ad1b0662aed1f2f1b23d6c4a0a2cf43c92200a
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
12
12
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ pub struct ps {
72
72
intr : @token:: ident_interner ,
73
73
comments : Option < ~[ comments:: cmnt ] > ,
74
74
literals : Option < ~[ comments:: lit ] > ,
75
- cur_cmnt_and_lit : @ mut CurrentCommentAndLiteral ,
75
+ cur_cmnt_and_lit : CurrentCommentAndLiteral ,
76
76
boxes : @mut ~[ pp:: breaks ] ,
77
77
ann : @pp_ann
78
78
}
@@ -101,7 +101,7 @@ pub fn rust_printer_annotated(writer: ~io::Writer,
101
101
intr : intr,
102
102
comments : None :: < ~[ comments:: cmnt ] > ,
103
103
literals : None :: < ~[ comments:: lit ] > ,
104
- cur_cmnt_and_lit : @ mut CurrentCommentAndLiteral {
104
+ cur_cmnt_and_lit : CurrentCommentAndLiteral {
105
105
cur_cmnt : 0 ,
106
106
cur_lit : 0
107
107
} ,
@@ -144,7 +144,7 @@ pub fn print_crate(cm: @CodeMap,
144
144
} else {
145
145
Some ( lits)
146
146
} ,
147
- cur_cmnt_and_lit : @ mut CurrentCommentAndLiteral {
147
+ cur_cmnt_and_lit : CurrentCommentAndLiteral {
148
148
cur_cmnt : 0 ,
149
149
cur_lit : 0
150
150
} ,
You can’t perform that action at this time.
0 commit comments