Skip to content

Commit ba9f4d0

Browse files
committed
Misplaced inline
1 parent 12df3e4 commit ba9f4d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EvaluateEquation.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ end
128128
function deg2_eval(
129129
cumulator_l::AbstractVector{T}, cumulator_r::AbstractVector{T}, op::F, ::Val{false}
130130
)::ResultOk where {T<:Number,F}
131-
@inline @simd for j in eachindex(cumulator_l)
131+
@inbounds @simd for j in eachindex(cumulator_l)
132132
x = op(cumulator_l[j], cumulator_r[j])::T
133133
cumulator_l[j] = x
134134
end
@@ -138,7 +138,7 @@ end
138138
function deg1_eval(
139139
cumulator::AbstractVector{T}, op::F, ::Val{false}
140140
)::ResultOk where {T<:Number,F}
141-
@inline @simd for j in eachindex(cumulator)
141+
@inbounds @simd for j in eachindex(cumulator)
142142
x = op(cumulator[j])::T
143143
cumulator[j] = x
144144
end

0 commit comments

Comments
 (0)