Skip to content

Commit

Permalink
Resolve semicolon_if_nothing_returned pedantic clippy lint from PR 1127
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jun 25, 2024
1 parent eb0330a commit 569cc1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ impl Eq for Map<String, Value> {}
impl Hash for Map<String, Value> {
#[inline]
fn hash<H: core::hash::Hasher>(&self, state: &mut H) {
self.map.hash(state)
self.map.hash(state);
}
}
#[cfg(feature = "preserve_order")]
Expand Down

0 comments on commit 569cc1e

Please sign in to comment.