From 6e0737771552ddb3206f32877ede30597f952aa3 Mon Sep 17 00:00:00 2001 From: reedlepee Date: Tue, 29 Oct 2013 05:40:32 +0530 Subject: [PATCH] Changed name to non_copyable #7427 --- src/libsyntax/parse/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 8a2d22dd3b2ab..c5bdc379dba0f 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -341,7 +341,7 @@ pub struct Parser { /// Stack of spans of open delimiters. Used for error message. open_braces: @mut ~[Span] /* do not copy the parser; its state is tied to outside state */ - priv new_field: util::NonCopyable + priv non_copyable: util::NonCopyable }