File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -65,14 +65,14 @@ impl Args {
6565 }
6666}
6767
68- #[ derive( Clone , Debug ) ]
68+ #[ derive( Clone ) ]
6969enum CharRepetition {
7070 AsManyAsNeeded ,
7171 N ( usize ) ,
7272}
7373
7474// The Char struct represents a character along with its repetition count.
75- #[ derive( Clone , Debug ) ]
75+ #[ derive( Clone ) ]
7676struct Char {
7777 // The character.
7878 char : char ,
@@ -81,14 +81,14 @@ struct Char {
8181}
8282
8383// The Equiv struct represents a character equivalent
84- #[ derive( Clone , Debug ) ]
84+ #[ derive( Clone ) ]
8585struct Equiv {
8686 // The character equivalent
8787 char : char ,
8888}
8989
9090// The Operand enum can be either a Char or an Equiv
91- #[ derive( Clone , Debug ) ]
91+ #[ derive( Clone ) ]
9292enum Operand {
9393 Char ( Char ) ,
9494 Equiv ( Equiv ) ,
You can’t perform that action at this time.
0 commit comments