Skip to content

Commit 9666cc5

Browse files
gdalleamontoison
andauthored
Update src/graph.jl
Co-authored-by: Alexis Montoison <35051714+amontoison@users.noreply.github.com>
1 parent 0b14d80 commit 9666cc5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/graph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ end
2323

2424
SparsityPatternCSC(A::SparseMatrixCSC) = SparsityPatternCSC(A.m, A.n, A.colptr, A.rowval)
2525

26-
Base.eltype(::SparsityPatternCSC{Ti}) where {Ti} = Ti
26+
Base.eltype(::SparsityPatternCSC{Ti}) where {T} = T
2727
Base.size(S::SparsityPatternCSC) = (S.m, S.n)
2828
Base.size(S::SparsityPatternCSC, d::Integer) = d::Integer <= 2 ? size(S)[d] : 1
2929
Base.axes(S::SparsityPatternCSC, d::Integer) = Base.OneTo(size(S, d))

0 commit comments

Comments
 (0)