Skip to content

Commit b461c61

Browse files
committed
Remove @inline
1 parent 9e4cdb9 commit b461c61

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
@@ -2342,7 +2342,7 @@ function _typed_hvncat(::Type{T}, shape::Tuple{Vararg{Tuple, N}}, row_first::Boo
23422342
return A
23432343
end
23442344

2345-
@inline function hvncat_fill!(A::Array, row_first::Bool, xs::Tuple)
2345+
function hvncat_fill!(A::Array, row_first::Bool, xs::Tuple)
23462346
# putting these in separate functions leads to unnecessary allocations
23472347
lenxs = length(xs)
23482348
lena = length(A)
@@ -2370,7 +2370,7 @@ end
23702370
end
23712371
end
23722372

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

0 commit comments

Comments
 (0)