diff --git a/src/lib.rs b/src/lib.rs index 67634173..f796b7aa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -551,8 +551,8 @@ pub struct IntoIter { // SAFETY: IntoIter has unique ownership of its contents. Sending (or sharing) // an `IntoIter` is equivalent to sending (or sharing) a `SmallVec`. -unsafe impl Send for IntoIter where T: Send {} -unsafe impl Sync for IntoIter where T: Sync {} +unsafe impl Send for IntoIter {} +unsafe impl Sync for IntoIter {} impl IntoIter { #[inline]