File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -646,11 +646,11 @@ impl<A: Array> Drop for IntoIter<A> {
646646
647647impl < A : Array > Iterator for IntoIter < A > {
648648 type Item = A :: Item ;
649-
649+
650650 #[ inline]
651651 fn next ( & mut self ) -> Option < A :: Item > {
652652 if self . current == self . end {
653- None
653+ None
654654 }
655655 else {
656656 unsafe {
@@ -672,7 +672,7 @@ impl<A: Array> DoubleEndedIterator for IntoIter<A> {
672672 #[ inline]
673673 fn next_back ( & mut self ) -> Option < A :: Item > {
674674 if self . current == self . end {
675- None
675+ None
676676 }
677677 else {
678678 unsafe {
@@ -910,7 +910,7 @@ pub mod tests {
910910 self . 0 . set ( self . 0 . get ( ) + 1 ) ;
911911 }
912912 }
913-
913+
914914 {
915915 let cell = Cell :: new ( 0 ) ;
916916 let mut v: SmallVec < [ DropCounter ; 2 ] > = SmallVec :: new ( ) ;
You can’t perform that action at this time.
0 commit comments