about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorAndrew Paseltiner <apaseltiner@gmail.com>2013-03-20 11:52:45 -0400
committerAndrew Paseltiner <apaseltiner@gmail.com>2013-03-22 06:30:59 -0400
commite2abecd3ab406ce447a8b23c8a7563e9c455f870 (patch)
treee1a2cd1af8878d1f4f37fb21e4c544d1131cd000 /src/libsyntax/parse/parser.rs
parent6e883c730e0d6b07a8a94df30c681a292a031b18 (diff)
downloadrust-e2abecd3ab406ce447a8b23c8a7563e9c455f870.tar.gz
rust-e2abecd3ab406ce447a8b23c8a7563e9c455f870.zip
syntax: replace uses of old deriving attribute with new one
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 95f8afd538a..e899c79a74c 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -93,7 +93,7 @@ use core::either;
 use core::vec;
 use std::oldmap::HashMap;
 
-#[deriving_eq]
+#[deriving(Eq)]
 enum restriction {
     UNRESTRICTED,
     RESTRICT_STMT_EXPR,