Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cakekindel committed Mar 12, 2023
1 parent 98a5887 commit eea8003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toad-map/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ impl<A: tinyvec::Array<Item = (K, V)>, K: Eq + Hash + Ord, V> Map<K, V> for tiny
}

#[cfg(feature = "alloc")]
impl<K, V> Map<K, V> for Vec<(K, V)> where K: Ord + Hash
impl<K, V> Map<K, V> for std_alloc::vec::Vec<(K, V)> where K: Ord + Hash
{
fn insert(&mut self, key: K, mut val: V) -> Result<(), InsertError<V>> {
match self.iter_mut().find(|(k, _)| k == &&key) {
Expand Down

0 comments on commit eea8003

Please sign in to comment.