Skip to content

Commit

Permalink
Disable unused enum variant warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsck committed Apr 17, 2024
1 parent 8fa7f0b commit dd9ad29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rust/iced-x86/src/formatter/tests/opt_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub(in super::super) enum OptionValue {
#[allow(dead_code)]
Ignore,
Boolean(bool),
Int32(i32),
Int32(#[allow(dead_code)] i32),
UInt64(u64),
String(String),
MemorySizeOptions(MemorySizeOptions),
Expand Down

0 comments on commit dd9ad29

Please sign in to comment.