@@ -5,7 +5,7 @@ using LinearAlgebra.BLAS
55
66using Base: AbstractCartesianIndex, OneTo, oneto, RangeIndex, ReinterpretArray, ReshapedArray,
77 Slice, tuple_type_tail, unalias,
8- @propagate_inbounds , @_propagate_inbounds_meta
8+ @propagate_inbounds
99
1010import Base: axes, size, length, eltype, ndims, first, last, diff, isempty, union, sort!,
1111 == , * , + , - , / , \ , copy, copyto!, similar, getproperty, getindex, strides,
@@ -132,8 +132,7 @@ copy(A::SubArray{<:Any,N,<:LayoutArray}) where N = sub_materialize(A)
132132copy (A:: SubArray{<:Any,N,<:AdjOrTrans{<:Any,<:LayoutArray}} ) where N = sub_materialize (A)
133133
134134@inline layout_getindex (A, I... ) = sub_materialize (view (A, I... ))
135- function layout_getindex (A:: AbstractArray , k:: Int... )
136- @_propagate_inbounds_meta
135+ @propagate_inbounds function layout_getindex (A:: AbstractArray , k:: Int... )
137136 Base. error_if_canonical_getindex (IndexStyle (A), A, k... )
138137 Base. _getindex (IndexStyle (A), A, k... )
139138end
0 commit comments