Skip to content

Commit 4b11d3e

Browse files
committed
Remove @inline
1 parent bedd238 commit 4b11d3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/abstractarray.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2345,7 +2345,7 @@ function _typed_hvncat(::Type{T}, shape::Tuple{Vararg{Tuple, N}}, row_first::Boo
23452345
return A
23462346
end
23472347

2348-
@inline function hvncat_fill!(A::Array, row_first::Bool, xs::Tuple)
2348+
function hvncat_fill!(A::Array, row_first::Bool, xs::Tuple)
23492349
# putting these in separate functions leads to unnecessary allocations
23502350
lenxs = length(xs)
23512351
lena = length(A)
@@ -2373,7 +2373,7 @@ end
23732373
end
23742374
end
23752375

2376-
@inline function hvncat_fill!(A::AbstractArray{T, N}, scratch1::Vector{Int}, scratch2::Vector{Int},
2376+
function hvncat_fill!(A::AbstractArray{T, N}, scratch1::Vector{Int}, scratch2::Vector{Int},
23772377
d1::Int, d2::Int, as::Tuple) where {T, N}
23782378
length(scratch1) == length(scratch2) == N ||
23792379
throw(ArgumentError("scratch vectors must have as many elements as the destination array has dimensions"))

0 commit comments

Comments
 (0)