diff options
author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2019-02-11 16:19:23 +0000 |
---|---|---|
committer | Aleksey Kladov <aleksey.kladov@gmail.com> | 2019-02-11 16:19:23 +0000 |
commit | e7b370226c9b3d045a805dae5b93231a0869bbca (patch) | |
tree | 1bf610035c5d6c05d7e348df772a548f6ec596fd /crates/ra_tt | |
parent | af62fde57fe58f4aa06608568dc26535731800a0 (diff) |
make macro-rules eq
Diffstat (limited to 'crates/ra_tt')
-rw-r--r-- | crates/ra_tt/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_tt/src/lib.rs b/crates/ra_tt/src/lib.rs index 043417abc..df31f72f3 100644 --- a/crates/ra_tt/src/lib.rs +++ b/crates/ra_tt/src/lib.rs | |||
@@ -39,7 +39,7 @@ pub struct Subtree { | |||
39 | pub token_trees: Vec<TokenTree>, | 39 | pub token_trees: Vec<TokenTree>, |
40 | } | 40 | } |
41 | 41 | ||
42 | #[derive(Clone, Copy, Debug)] | 42 | #[derive(Clone, Copy, Debug, PartialEq, Eq)] |
43 | pub enum Delimiter { | 43 | pub enum Delimiter { |
44 | Parenthesis, | 44 | Parenthesis, |
45 | Brace, | 45 | Brace, |