about summary refs log tree commit diff
path: root/src/libsyntax_expand
diff options
context:
space:
mode:
authorNicholas Nethercote <nnethercote@mozilla.com>2019-10-20 15:54:53 +1100
committerNicholas Nethercote <nnethercote@mozilla.com>2019-10-21 20:59:18 +1100
commitac6daed384d17abd31f84fc8205c21eee6a248be (patch)
tree1b65f9ba48504a77ce640669baa10e8f8fb283c1 /src/libsyntax_expand
parentc3b3a861244f5e61d5912ba507e229d978ec1c1c (diff)
downloadrust-ac6daed384d17abd31f84fc8205c21eee6a248be.tar.gz
rust-ac6daed384d17abd31f84fc8205c21eee6a248be.zip
Remove many unnecessary trait derivations.
Diffstat (limited to 'src/libsyntax_expand')
-rw-r--r--src/libsyntax_expand/mbe.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax_expand/mbe.rs b/src/libsyntax_expand/mbe.rs
index 453fe94f1de..d0f790638ef 100644
--- a/src/libsyntax_expand/mbe.rs
+++ b/src/libsyntax_expand/mbe.rs
@@ -73,7 +73,7 @@ impl KleeneToken {
 
 /// A Kleene-style [repetition operator](http://en.wikipedia.org/wiki/Kleene_star)
 /// for token sequences.
-#[derive(Clone, PartialEq, RustcEncodable, RustcDecodable, Hash, Debug, Copy)]
+#[derive(Clone, PartialEq, RustcEncodable, RustcDecodable, Debug, Copy)]
 enum KleeneOp {
     /// Kleene star (`*`) for zero or more repetitions
     ZeroOrMore,