File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
{
14
14
type Output = I :: Output ;
15
15
16
- #[ inline( always ) ]
16
+ #[ inline]
17
17
fn index ( & self , index : I ) -> & I :: Output {
18
18
index. index ( self )
19
19
}
@@ -24,7 +24,7 @@ impl<T, I> ops::IndexMut<I> for [T]
24
24
where
25
25
I : SliceIndex < [ T ] > ,
26
26
{
27
- #[ inline( always ) ]
27
+ #[ inline]
28
28
fn index_mut ( & mut self , index : I ) -> & mut I :: Output {
29
29
index. index_mut ( self )
30
30
}
@@ -390,7 +390,7 @@ unsafe impl<T> SliceIndex<[T]> for ops::Range<usize> {
390
390
}
391
391
}
392
392
393
- #[ inline( always ) ]
393
+ #[ inline]
394
394
fn index ( self , slice : & [ T ] ) -> & [ T ] {
395
395
if self . start > self . end {
396
396
slice_index_order_fail ( self . start , self . end ) ;
@@ -440,7 +440,7 @@ unsafe impl<T> SliceIndex<[T]> for ops::RangeTo<usize> {
440
440
unsafe { ( 0 ..self . end ) . get_unchecked_mut ( slice) }
441
441
}
442
442
443
- #[ inline( always ) ]
443
+ #[ inline]
444
444
fn index ( self , slice : & [ T ] ) -> & [ T ] {
445
445
( 0 ..self . end ) . index ( slice)
446
446
}
You can’t perform that action at this time.
0 commit comments