File tree 1 file changed +15
-3
lines changed
1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -358,6 +358,7 @@ impl<T> Bucket<T> {
358
358
self . as_ptr ( ) . copy_from_nonoverlapping ( other. as_ptr ( ) , 1 ) ;
359
359
}
360
360
361
+ #[ cfg_attr( feature = "inline-more" , inline) ]
361
362
fn cast < U > ( self ) -> Bucket < U > {
362
363
Bucket {
363
364
ptr : self . ptr . cast ( ) ,
@@ -1612,12 +1613,23 @@ impl<T> RawIterRange<T> {
1612
1613
1613
1614
let tail = Self :: new (
1614
1615
self . inner . next_ctrl . add ( mid) ,
1615
- self . data . next_n ( Group :: WIDTH ) . next_n ( mid) ,
1616
+ self . inner
1617
+ . data
1618
+ . clone ( )
1619
+ . cast :: < T > ( )
1620
+ . next_n ( Group :: WIDTH )
1621
+ . next_n ( mid) ,
1616
1622
len - mid,
1617
1623
) ;
1618
1624
debug_assert_eq ! (
1619
- self . data. next_n( Group :: WIDTH ) . next_n( mid) . ptr,
1620
- tail. data. ptr
1625
+ self . inner
1626
+ . data
1627
+ . clone( )
1628
+ . cast:: <T >( )
1629
+ . next_n( Group :: WIDTH )
1630
+ . next_n( mid)
1631
+ . ptr,
1632
+ tail. inner. data. clone( ) . cast:: <T >( ) . ptr
1621
1633
) ;
1622
1634
debug_assert_eq ! ( self . inner. end, tail. inner. end) ;
1623
1635
self . inner . end = self . inner . next_ctrl . add ( mid) ;
You can’t perform that action at this time.
0 commit comments