Skip to content

Commit

Permalink
forgot to save
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Oct 28, 2023
1 parent aabc85a commit 0263399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/default.jl
Original file line number Diff line number Diff line change
Expand Up @@ -412,10 +412,10 @@ end
end

ex = if ex == :()
Expr(:elseif, :(getproperty(DefaultAlgorithmChoice, $(Meta.quot(alg))) === cache.alg), newex,
Expr(:elseif, :(getproperty(DefaultAlgorithmChoice, $(Meta.quot(alg))) === cache.alg.alg), newex,
:(error("Algorithm Choice not Allowed")))
else
Expr(:elseif, :(getproperty(DefaultAlgorithmChoice, $(Meta.quot(alg))) === cache.alg), newex, ex)
Expr(:elseif, :(getproperty(DefaultAlgorithmChoice, $(Meta.quot(alg))) === cache.alg.alg), newex, ex)
end
end
ex = Expr(:if, ex.args...)
Expand Down

0 comments on commit 0263399

Please sign in to comment.