Skip to content

Commit 8382022

Browse files
committed
don't inline _getranges
1 parent 454011b commit 8382022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blockmap.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ BlockMap{T}(maps::As, rows::Rs) where {T, As<:LinearMapTuple, Rs} =
2424

2525
MulStyle(A::BlockMap) = MulStyle(A.maps...)
2626

27-
@inline function _getranges(maps, dim, inds::NTuple{N,Int}=ntuple(identity, Val(length(maps)))) where {N}
27+
function _getranges(maps, dim, inds::NTuple{N,Int}=ntuple(identity, Val(length(maps)))) where {N}
2828
sizes = ntuple(i -> (@inbounds size(maps[inds[i]], dim)), Val(N))
2929
ends = cumsum(sizes)
3030
starts = (1, (1 .+ Base.front(ends))...)

0 commit comments

Comments
 (0)