Skip to content

Commit 8fc2008

Browse files
authored
Update ArrayInterfaceStaticArrays.jl
1 parent 18484e6 commit 8fc2008

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ArrayInterfaceStaticArrays/src/ArrayInterfaceStaticArrays.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import ArrayInterfaceStaticArraysCore
99

1010
const CanonicalInt = Union{Int,StaticInt}
1111

12-
function ArrayInterfaceCore.undefmatrix(::MArray{S, T, N, L}) where {S, T, N, L}
12+
function ArrayInterface.undefmatrix(::MArray{S, T, N, L}) where {S, T, N, L}
1313
return MMatrix{L, L, T, L*L}(undef)
1414
end
1515
# SArray doesn't have an undef constructor and is going to be small enough that this is fine.
16-
function ArrayInterfaceCore.undefmatrix(s::SArray)
16+
function ArrayInterface.undefmatrix(s::SArray)
1717
v = vec(s)
1818
return v.*v'
1919
end

0 commit comments

Comments
 (0)