Skip to content

Commit 8aa104c

Browse files
committed
make lib loadable
1 parent 1f9e073 commit 8aa104c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/broadcast.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Base.@propagate_inbounds Base.getindex(A::LowDimArray, i...) = getindex(A.data,
161161
end
162162
Expr(:block, Expr(:meta,:inline), :(s = size(A)), t)
163163
end
164-
Base.parent(A::SizedOffsetMatrix) = A.data
164+
Base.parent(A::LowDimArray) = A.data
165165
Base.unsafe_convert(::Type{Ptr{T}}, A::LowDimArray{D,T}) where {D,T} = pointer(A.data)
166166
ArrayInterface.contiguous_axis(A::LowDimArray) = ArrayInterface.contiguous_axis(A.data)
167167
ArrayInterface.contiguous_batch_size(A::LowDimArray) = ArrayInterface.contiguous_batch_size(A.data)

0 commit comments

Comments
 (0)