Skip to content

Commit

Permalink
Quiet a compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bradlarsen committed Sep 30, 2024
1 parent 702c53c commit 0f849a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/input-enumerator/src/git_metadata_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ impl ObjectIdBimap {

fn insert(&mut self, oid: ObjectId) {
match self.oid_to_idx.entry(oid) {
gix::hashtable::hash_map::Entry::Occupied(e) => {
gix::hashtable::hash_map::Entry::Occupied(_e) => {
// warn!("object {} seen multiple times", e.key());
}
gix::hashtable::hash_map::Entry::Vacant(e) => {
Expand Down

0 comments on commit 0f849a9

Please sign in to comment.