Skip to content

Commit f99bd4e

Browse files
Merge pull request #40 from ChrisRackauckas-Claude/interface-check-20251229-211636
Fix fill! to return array instead of nothing
2 parents cc5cbf7 + d4a7cc2 commit f99bd4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/FastAlmostBandedMatrices.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ end
172172
function Base.fill!(A::AlmostBandedMatrix, v)
173173
fill!(bandpart(A), v)
174174
fill!(fillpart(A), v)
175-
return nothing
175+
return A
176176
end
177177

178178
@inline function colsupport(::AbstractAlmostBandedLayout, A, j)

0 commit comments

Comments
 (0)