@@ -135,7 +135,7 @@ function __init__()
135
135
Base. firstindex (i:: BandedMatrixIndex ) = 1
136
136
Base. lastindex (i:: BandedMatrixIndex ) = i. count
137
137
Base. length (i:: BandedMatrixIndex ) = lastindex (i)
138
- @propagate_inbounds function Base. getindex (ind:: BandedMatrixIndex , i:: Int )
138
+ Base . @propagate_inbounds function Base. getindex (ind:: BandedMatrixIndex , i:: Int )
139
139
@boundscheck 1 <= i <= ind. count || throw (BoundsError (ind, i))
140
140
_i = i
141
141
p = 1
@@ -253,7 +253,7 @@ function __init__()
253
253
colindobj = BlockBandedMatrixIndex (currenti - 1 , refinds, refcolcoords, false )
254
254
rowindobj, colindobj
255
255
end
256
- @propagate_inbounds function Base. getindex (ind:: BlockBandedMatrixIndex , i:: Int )
256
+ Base . @propagate_inbounds function Base. getindex (ind:: BlockBandedMatrixIndex , i:: Int )
257
257
@boundscheck 1 <= i <= ind. count || throw (BoundsError (ind, i))
258
258
p = 1
259
259
while i - ind. refinds[p] >= 0
@@ -293,7 +293,7 @@ function __init__()
293
293
Base. firstindex (i:: BandedBlockBandedMatrixIndex ) = 1
294
294
Base. lastindex (i:: BandedBlockBandedMatrixIndex ) = i. count
295
295
Base. length (i:: BandedBlockBandedMatrixIndex ) = lastindex (i)
296
- @propagate_inbounds function Base. getindex (ind:: BandedBlockBandedMatrixIndex , i:: Int )
296
+ Base . @propagate_inbounds function Base. getindex (ind:: BandedBlockBandedMatrixIndex , i:: Int )
297
297
@boundscheck 1 <= i <= ind. count || throw (BoundsError (ind, i))
298
298
p = 1
299
299
while i - ind. refinds[p] >= 0
0 commit comments