Skip to content

Commit ba19369

Browse files
more depwarn fixes
1 parent 8f6dd67 commit ba19369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/func_builds.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ function build_jac_func(symjac,indvar_dict,params;params_from_function=true)
22
Jex = :()
33
for i in 1:size(symjac,1)
44
for j in 1:size(symjac,2)
5-
ex = parse(string(symjac[i,j]))
5+
ex = Meta.parse(string(symjac[i,j]))
66
if typeof(ex) <: Expr
77
ode_findreplace(ex,copy(ex),indvar_dict,params,params_from_function=params_from_function)
88
else

0 commit comments

Comments
 (0)