Skip to content

Commit c7b0f6c

Browse files
authored
Merge pull request #35 from JuliaOpt/bl/wordsize
🏁 Fix WORD_SIZE
2 parents 4e2032e + 2fa45f9 commit c7b0f6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/MPBWrapper.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ end
1616
include(joinpath(MPB_test_path, "conicinterface.jl"))
1717
# FIXME fails on Windows 32 bits... Maybe I should put linear vars/cons
1818
# in a diagonal matrix in SemidefiniteModels.jl instead of many 1x1 blocks
19-
@static if !Compat.Sys.iswindows() || Compat.Sys.WORD_SIZE != 32
19+
@static if !Compat.Sys.iswindows() || Sys.WORD_SIZE != 32
2020
@testset "Conic linear tests" begin
2121
coniclineartest(solver, duals=true, tol=1e-6)
2222
end

0 commit comments

Comments
 (0)