From 1fa1545e776169c9d4ac39bc67f1d4e0a3a5c3bc Mon Sep 17 00:00:00 2001 From: L0uisc Date: Fri, 13 Dec 2019 20:54:01 +0200 Subject: [PATCH] Remove specialized impl --- lib.rs | 9 --------- 1 file changed, 9 deletions(-) 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,