Skip to content

Commit

Permalink
Merge pull request #138 from JuliaOpt/tk/version
Browse files Browse the repository at this point in the history
specific version cutoff for escaping stdcall
  • Loading branch information
mlubin authored Jul 13, 2017
2 parents f64462e + 5676654 commit b42fa93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpx_common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ macro cpx_ccall(func, args...)
end
end
if is_windows()
if VERSION < v"0.6-"
if VERSION < v"0.6.0-dev.1512" # probably julia PR #15850
return quote
ccall(($f,libcplex), stdcall, $(args...))
end
Expand Down

0 comments on commit b42fa93

Please sign in to comment.