Skip to content

Commit

Permalink
Merge pull request #13 from compiler-errors/fix
Browse files Browse the repository at this point in the history
Add newly required bound due to rust-lang/rust#100046
  • Loading branch information
itsybitesyspider committed Apr 7, 2023
2 parents 604650b + 9fbff2c commit 2c1a904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queries/secondary_index.rs
Expand Up @@ -485,7 +485,7 @@ where
}
}

impl<'a, K, T, S> KeySet<'a, K> for HashSet<T, S>
impl<'a, K, T, S: 'a> KeySet<'a, K> for HashSet<T, S>
where
T: Clone + Borrow<K> + 'a,
K: ToOwned<Owned = T> + ?Sized + 'a,
Expand Down

0 comments on commit 2c1a904

Please sign in to comment.