Skip to content

Commit

Permalink
New beta clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsck committed Feb 24, 2024
1 parent 12b797b commit d3c1d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rust/iced-x86/src/formatter/fmt_opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl PartialEq<FormatterOptionString> for FormatterOptionString {
#[must_use]
#[inline]
fn eq(&self, other: &FormatterOptionString) -> bool {
self.as_str().eq(other.as_str())
self.as_str() == other.as_str()
}
}

Expand Down

0 comments on commit d3c1d0f

Please sign in to comment.