Derive Eq on lexer::number::Sign
This commit is contained in:
parent
28ba98582a
commit
a88bf20a23
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ use char::FromChar;
|
|||
#[derive(Debug)]
|
||||
pub enum Radix { Bin, Oct, Dec, Hex }
|
||||
|
||||
#[derive(PartialEq, Debug)]
|
||||
#[derive(Eq, PartialEq, Debug)]
|
||||
pub enum Sign { Pos, Neg }
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue