Skip to content

Commit

Permalink
copy! -> copyto! (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlubin committed Oct 9, 2018
1 parent f9a1b97 commit f389c99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SolverInterface/lpqp_to_conic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ end
for f in [:cbgetmipsolution,:cbgetlpsolution]
@eval function ($f)(cb::LPQPWrapperCallbackData,output)
($f)(cb.lpqpcb,cb.solvec)
copy!(output,1,cb.solvec,1,length(output))
copyto!(output,1,cb.solvec,1,length(output))
end
end

Expand Down

0 comments on commit f389c99

Please sign in to comment.