about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-03-22 05:30:50 -0700
committerbors <bors@rust-lang.org>2013-03-22 05:30:50 -0700
commit059764779c7389bcea118d4c43cc243d185ec243 (patch)
tree84c32ee97cbc8fc5e1a709aced4a2f29e046c3fa /src/libsyntax/parse/parser.rs
parent9584c60871dc712f95a2f37f24853cf3faf6191e (diff)
parent999e7ef9a97431d2c40ebe09cf27ea7a3e80de40 (diff)
downloadrust-059764779c7389bcea118d4c43cc243d185ec243.tar.gz
rust-059764779c7389bcea118d4c43cc243d185ec243.zip
auto merge of #5493 : apasel422/rust/leibniz, r=bstrie
Closes #5411.
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,