diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2018-03-21 01:58:25 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2018-07-14 14:56:57 +0300 |
| commit | 4d1a30c92b50c5965ed26449758fca81bee15747 (patch) | |
| tree | ad1638de488e3f30ce91f7e7443b0b7891003a0b /src/libsyntax/parse/lexer | |
| parent | 0a8275f8b677304458c6161e26436dfe67ab766b (diff) | |
| download | rust-4d1a30c92b50c5965ed26449758fca81bee15747.tar.gz rust-4d1a30c92b50c5965ed26449758fca81bee15747.zip | |
Remove most of `PartialEq` impls from AST and HIR structures
Diffstat (limited to 'src/libsyntax/parse/lexer')
| -rw-r--r-- | src/libsyntax/parse/lexer/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/lexer/mod.rs b/src/libsyntax/parse/lexer/mod.rs index dcc71e78778..92fcf865042 100644 --- a/src/libsyntax/parse/lexer/mod.rs +++ b/src/libsyntax/parse/lexer/mod.rs @@ -26,7 +26,7 @@ pub mod comments; mod tokentrees; mod unicode_chars; -#[derive(Clone, PartialEq, Eq, Debug)] +#[derive(Clone, Debug)] pub struct TokenAndSpan { pub tok: token::Token, pub sp: Span, |
