Skip to content

Commit f9a2ce4

Browse files
Merge pull request #244 from JuliaDiffEq/ChrisRackauckas-patch-1
Fix accidental inbounds
2 parents 6eae2ad + e0f94c6 commit f9a2ce4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/utils.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ function build_function(rhss, vs, ps = (), args = (), conv = simplified_expr, ex
100100

101101
iip_ex = :(
102102
($X,$(fargs.args...)) -> begin
103-
@inbounds begin
104-
$ip_bounds_block
105-
end
103+
$ip_bounds_block
106104
nothing
107105
end
108106
)

0 commit comments

Comments
 (0)