Skip to content

Commit

Permalink
Merge pull request torvalds#180 from ojeda/remove-debug
Browse files Browse the repository at this point in the history
Remove the only #[derive(Debug)] instance we have
  • Loading branch information
ojeda authored Apr 12, 2021
2 parents 60d3e16 + 1b770e3 commit 9c1bc39
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 9c1bc39

Please sign in to comment.