Skip to content

Commit 3565e77

Browse files
committed
Revert "remove inbounds (needed on 1.11 only)"
This reverts commit be26c64.
1 parent b5b8f5d commit 3565e77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dspbase.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const SMALL_FILT_VECT_CUTOFF = 19
127127
xi = x[i, col]
128128
val = muladd(xi, b[1], si_1)
129129
if VECTORIZE_LARGER
130-
out[i, col] = val
130+
@inbounds out[i, col] = val
131131
end
132132
Base.@nexprs $(silen - 1) j -> (si_j = muladd(xi, b[j+1], si_{j + 1}))
133133
$si_end = xi * b[N]

0 commit comments

Comments
 (0)