Skip to content

Commit 5a81362

Browse files
committed
Just remove all the inline stuff
1 parent ed9a3f8 commit 5a81362

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/array_interface.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ Base.@propagate_inbounds Base.maybeview(x::ComponentArray, idx...) = _getindex(B
120120
inds = map(i -> i.idx, ci)
121121
axs = map(i -> i.ax, ci)
122122
axs = remove_nulls(axs...)
123-
return :(@inline ComponentArray(index_fun(getdata(x), $inds...), $axs...))
123+
return :(ComponentArray(index_fun(getdata(x), $inds...), $axs...))
124124
end
125125

126126
@generated function _setindex!(x::ComponentArray, v, idx...)
127127
ci = getindex.(getaxes(x), getval.(idx))
128128
inds = map(i -> i.idx, ci)
129-
return :(@inline setindex!(getdata(x), v, $inds...))
129+
return :(setindex!(getdata(x), v, $inds...))
130130
end
131131

132132
## Linear Algebra

0 commit comments

Comments
 (0)