From e0f94c603cd348cf0177f0d032aef545dff46dce Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 13 Feb 2020 12:43:59 -0500 Subject: [PATCH] Fix accidental inbounds --- src/utils.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/utils.jl b/src/utils.jl index 9ff0f09174..c024e6d56e 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -100,9 +100,7 @@ function build_function(rhss, vs, ps = (), args = (), conv = simplified_expr, ex iip_ex = :( ($X,$(fargs.args...)) -> begin - @inbounds begin - $ip_bounds_block - end + $ip_bounds_block nothing end )