Skip to content

Commit

Permalink
specify ambiguity (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
matbesancon authored Nov 12, 2024
1 parent 39c76df commit 25096b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/active_set_quadratic_direct_solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ end

Base.push!(as::ActiveSetQuadraticLinearSolve, tuple) = push!(as.active_set, tuple)

Base.deleteat!(as::ActiveSetQuadraticLinearSolve, idx) = deleteat!(as.active_set, idx)
Base.deleteat!(as::ActiveSetQuadraticLinearSolve, idx::Int) = deleteat!(as.active_set, idx)

Base.empty!(as::ActiveSetQuadraticLinearSolve) = empty!(as.active_set)

Expand Down

0 comments on commit 25096b9

Please sign in to comment.