Skip to content

Commit

Permalink
Remove unused Debug bound
Browse files Browse the repository at this point in the history
  • Loading branch information
yj-qin committed Mar 25, 2024
1 parent d990e6b commit 4b1076f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hashmap/hashmap.mbt
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ fn next_index[K : Hash, V](self : HashMap[K, V], index : Int) -> Int {
(index + 1) % self.capacity
}

fn debug_entries[K : Debug + Show, V : Debug + Show](
fn debug_entries[K : Show, V : Show](
self : HashMap[K, V]
) -> String {
let mut s = ""
Expand Down

0 comments on commit 4b1076f

Please sign in to comment.