Skip to content

Commit b4d4498

Browse files
authored
fully qualify promote_eltypeof call (#411)
Missed in #407, but causing doctest build to fail when we try to use this.
1 parent c93589c commit b4d4498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sparsevector.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1236,7 +1236,7 @@ function hvcat(rows::Tuple{Vararg{Int}}, X::_SparseConcatGroup...)
12361236
if anysparse(X...)
12371237
vcat(_hvcat_rows(rows, X...)...)
12381238
else
1239-
Base.typed_hvcat(promote_eltypeof(X...), rows, X...)
1239+
Base.typed_hvcat(Base.promote_eltypeof(X...), rows, X...)
12401240
end
12411241
end
12421242
function _hvcat_rows((row1, rows...)::Tuple{Vararg{Int}}, X::_SparseConcatGroup...)

0 commit comments

Comments
 (0)