about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2019-10-28 12:40:12 +0100
committerFelix S. Klock II <pnkfelix@pnkfx.org>2019-11-05 14:58:10 +0100
commit7d7fbcb3015521412ab17a814680cd1d9bb6cde9 (patch)
tree0d76d4ef36a58277401dd6aa87d04339c646add8 /src/libsyntax
parentd1fff4a4b213b3341c1ff994061b7965a5932c70 (diff)
downloadrust-7d7fbcb3015521412ab17a814680cd1d9bb6cde9.tar.gz
rust-7d7fbcb3015521412ab17a814680cd1d9bb6cde9.zip
Remove `PartialEq` and `Eq` from the `SpecialDerives`.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/expand/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libsyntax/expand/mod.rs b/src/libsyntax/expand/mod.rs
index 038f60287be..35729508197 100644
--- a/src/libsyntax/expand/mod.rs
+++ b/src/libsyntax/expand/mod.rs
@@ -9,8 +9,6 @@ bitflags::bitflags! {
     /// Built-in derives that need some extra tracking beyond the usual macro functionality.
     #[derive(Default)]
     pub struct SpecialDerives: u8 {
-        const PARTIAL_EQ = 1 << 0;
-        const EQ         = 1 << 1;
         const COPY       = 1 << 2;
     }
 }