diff --git a/lib.rs b/lib.rs index b83c865..9f78c0a 100644 --- a/lib.rs +++ b/lib.rs @@ -1504,15 +1504,6 @@ pub struct IntoIter { end: usize, } -/*impl Clone for IntoIter -where - A::Item: Copy, -{ - fn clone(&self) -> IntoIter { - SmallVec::from_slice(self.as_slice()).into_iter() - } -}*/ - impl Clone for IntoIter where A::Item: Clone,