Skip to content

Commit 38bedf3

Browse files
Remove Debug derives
1 parent 9237013 commit 38bedf3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

text/tr.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ impl Args {
6565
}
6666
}
6767

68-
#[derive(Clone, Debug)]
68+
#[derive(Clone)]
6969
enum 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)]
7676
struct 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)]
8585
struct 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)]
9292
enum Operand {
9393
Char(Char),
9494
Equiv(Equiv),

0 commit comments

Comments
 (0)