Skip to content

Commit ad3a834

Browse files
fixup! refactor: get System to precompile in a trivial case
1 parent 954af3e commit ad3a834

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ Assert that equations are well-formed when building ODE, i.e., only containing a
211211
function check_equations(eqs::Vector{Equation}, iv::SymbolicT)
212212
icp = IndepvarCheckPredicate(iv)
213213
for eq in eqs
214-
SU.query!(icp, eq.lhs)
215-
SU.query!(icp, eq.rhs)
214+
SU.query(icp, eq.lhs)
215+
SU.query(icp, eq.rhs)
216216
end
217217
end
218218

0 commit comments

Comments
 (0)