Skip to content

Commit

Permalink
Update lazyconcat.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
dlfivefifty committed Dec 7, 2024
1 parent 2d28d4d commit 922ade6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lazyconcat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ _cat_length(a::AbstractArray) = length(a)
_cat_getindex(a, k...) = a
_cat_getindex(a::AbstractArray, k...) = a[k...]
_cat_colsupport(a, k...) = 1

Check warning on line 44 in src/lazyconcat.jl

View check run for this annotation

Codecov / codecov/patch

src/lazyconcat.jl#L44

Added line #L44 was not covered by tests
_cat_colsupport(a::AbstractArray, k...) = colsupport(a, k)
_cat_colsupport(a::AbstractArray, k...) = colsupport(a, k...)


@inline applied_eltype(::typeof(vcat)) = Any
Expand Down

0 comments on commit 922ade6

Please sign in to comment.