Skip to content

Commit 561d510

Browse files
committed
Remove Module prefix
1 parent 874ddb3 commit 561d510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/banded/BandedMatrix.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ BandedMatrix(A::AbstractMatrix) = _BandedMatrix(MemoryLayout(A), A)
264264
## specialised
265265
# use bandeddata if possible
266266
_BandedMatrix(::BandedColumns, A::AbstractMatrix) = _BandedMatrix(copy(bandeddata(A)), axes(A,1), bandwidths(A)...)
267-
function _BandedMatrix(::BandedMatrices.BandedRows, A::AbstractMatrix)
267+
function _BandedMatrix(::BandedRows, A::AbstractMatrix)
268268
bdata = bandedrowsdata(A)
269269
u, ℓ = bandwidths(A)
270270
m, n = size(A)

0 commit comments

Comments
 (0)