Skip to content

Commit cb0b365

Browse files
committed
---
yaml --- r: 91081 b: refs/heads/master c: e0a5460 h: refs/heads/master i: 91079: 4cf8eff v: v3
1 parent ac11b1c commit cb0b365

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 4ee95cf96c8e4d30b8d0dfa83f58d050cae10fae
2+
refs/heads/master: e0a5460e946b496ab9b47072e45fa0eb96e7db5e
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d3e57dca68fde4effdda3e4ae2887aa535fcd6
55
refs/heads/try: b160761e35efcd1207112b3b782c06633cf441a8

trunk/src/libsyntax/parse/parser.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ pub fn Parser(sess: @mut ParseSess, cfg: ast::CrateConfig, rdr: @mut reader)
316316
tokens_consumed: 0,
317317
restriction: UNRESTRICTED,
318318
quote_depth: 0,
319-
obsolete_set: @mut HashSet::new(),
319+
obsolete_set: HashSet::new(),
320320
mod_path_stack: @mut ~[],
321321
open_braces: @mut ~[],
322322
non_copyable: util::NonCopyable
@@ -345,7 +345,7 @@ pub struct Parser {
345345
interner: @token::ident_interner,
346346
/// The set of seen errors about obsolete syntax. Used to suppress
347347
/// extra detail when the same error is seen twice
348-
obsolete_set: @mut HashSet<ObsoleteSyntax>,
348+
obsolete_set: HashSet<ObsoleteSyntax>,
349349
/// Used to determine the path to externally loaded source files
350350
mod_path_stack: @mut ~[@str],
351351
/// Stack of spans of open delimiters. Used for error message.

0 commit comments

Comments
 (0)