Skip to content

Commit c304bf6

Browse files
default typing fix
1 parent eb688b9 commit c304bf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ode_def_opts.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function ode_def_opts(name::Symbol,opts::Dict{Symbol,Bool},ex::Expr,params...;_M
66
if !(eltype(params) <: Symbol)
77
error("The syntax for ParameterizedFunctions has changed. Simply list the parameters at the end, i.e. `a b c d`, instead of `a=5.0 b=>3.0 ...`. Parameters are defined in the problem type. See the documentation for more information.")
88
end
9-
params = [params...]
9+
params = Symbol[params...]
1010

1111
## Build independent variable dictionary
1212
indvar_dict,syms = build_indvar_dict(ex,depvar)

0 commit comments

Comments
 (0)