Skip to content

Commit 0489190

Browse files
committed
Bugfix for julia 1.6
1 parent f300639 commit 0489190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/p_sparse_matrix.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ function psparse(f,row_partition,col_partition;assembled)
11201120
end
11211121

11221122
function psparse(I,J,V,rows,cols;kwargs...)
1123-
T = SparseMatrixCSC{eltype(eltype(V)),Int32}
1123+
T = SparseMatrixCSC{eltype(eltype(V)),Int}
11241124
psparse(T,I,J,V,rows,cols;kwargs...)
11251125
end
11261126

0 commit comments

Comments
 (0)