Skip to content

Commit a8bc51f

Browse files
committed
Fix for 32 bits
1 parent 5382e3e commit a8bc51f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SemidefiniteOptInterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function getblock(M, blk::Int, s::Type{<:MOI.AbstractVectorSet})
194194
_getblock(M, blk, s)
195195
end
196196

197-
getvarprimal(m::SOItoMOIBridge, blk::Int, S) = getblock(getX(m.sdoptimizer), blk, S)
197+
getvarprimal(m::SOItoMOIBridge, blk::Integer, S) = getblock(getX(m.sdoptimizer), blk, S)
198198
function getvardual(m::SOItoMOIBridge, blk::Int, S)
199199
getblock(getZ(m.sdoptimizer), blk, S)
200200
end

0 commit comments

Comments
 (0)