Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Dec 21, 2023
1 parent 524e843 commit 1f448a0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/matmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ end
Base.size(x::Issue65Matrix) = size(x.x)
Base.getindex(x::Issue65Matrix, args...) = getindex(x.x, args...)
Base.axes(x::Issue65Matrix, n) = Issue65OneTo(size(x.x, n))
Base.convert(::Type{Base.OneTo}, x::Issue65OneTo) = Base.OneTo(x.N)
Base.iterate(x::Issue65OneTo) = iterate(Base.OneTo(x.N))
Base.iterate(x::Issue65OneTo, arg) = iterate(Base.OneTo(x.N), arg)

Expand Down

0 comments on commit 1f448a0

Please sign in to comment.