Skip to content

Commit e9d199c

Browse files
committed
v1.7.5
1 parent 4ff8ff0 commit e9d199c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BandedMatrices"
22
uuid = "aae01518-5342-5314-be14-df237901396f"
3-
version = "1.7.4"
3+
version = "1.7.5"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"

src/generic/AbstractBandedMatrix.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,15 +406,15 @@ end
406406
# vcat
407407
###
408408

409-
function LinearAlgebra.vcat(x::AbstractBandedMatrix...)
409+
function Base.vcat(x::AbstractBandedMatrix...)
410410
#avoid unnecessary steps for singleton
411411
if length(x) == 1
412412
return x[1]
413413
end
414414

415415
#instantiate the returned banded matrix with zeros and required bandwidths/dimensions
416416
m = size(x[1], 2)
417-
l,u = -m, typemin(Int64)
417+
l,u = -m, typemin(Int)
418418
n = 0
419419
isempty = true
420420

0 commit comments

Comments
 (0)