| commit | 598154250c402828d9ec26bf388fefcc34884954 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Fri Oct 30 21:24:05 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Fri Oct 30 21:24:05 2020 -0700 |
| tree | 15e9ef271a3c3e9895b029bd63c3868e20ca1cdc | |
| parent | be7e30e0c9ed719c379952753b98c009412ee39f [diff] [blame] |
Remove unneeded derives on ResolvableName
diff --git a/syntax/mod.rs b/syntax/mod.rs index b1aaa13..8d3b8a2 100644 --- a/syntax/mod.rs +++ b/syntax/mod.rs
@@ -202,7 +202,7 @@ // Wrapper for a type which needs to be resolved before it can be printed in // C++. -#[derive(Clone, Eq, PartialEq, Hash, Ord, PartialOrd)] +#[derive(Clone, PartialEq, Hash)] pub struct ResolvableName { pub rust: Ident, }