Skip to content

Commit

Permalink
Remove the only #[derive(Debug)] instance we have
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
  • Loading branch information
ojeda committed Apr 12, 2021
1 parent 60d3e16 commit 1b770e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/module.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ fn expect_byte_string(it: &mut token_stream::IntoIter) -> String {
try_byte_string(it).expect("Expected byte string")
}

#[derive(Debug, Clone, PartialEq)]
#[derive(Clone, PartialEq)]
enum ParamType {
Ident(String),
Array { vals: String, max_length: usize },
Expand Down

0 comments on commit 1b770e3

Please sign in to comment.