updated the places where the struct is created #7427

This commit is contained in:
reedlepee 2013-10-29 15:08:59 +05:30
parent 6e07377715
commit 33b9afac4a
1 changed files with 3 additions and 2 deletions

View File

@ -309,7 +309,8 @@ pub fn Parser(sess: @mut ParseSess,
quote_depth: @mut 0,
obsolete_set: @mut HashSet::new(),
mod_path_stack: @mut ~[],
open_braces: @mut ~[]
open_braces: @mut ~[],
non_copyable: util::NonCopyable
}
}
@ -339,7 +340,7 @@ pub struct Parser {
/// Used to determine the path to externally loaded source files
mod_path_stack: @mut ~[@str],
/// Stack of spans of open delimiters. Used for error message.
open_braces: @mut ~[Span]
open_braces: @mut ~[Span],
/* do not copy the parser; its state is tied to outside state */
priv non_copyable: util::NonCopyable
}