Skip to content

Commit 205ad73

Browse files
Fixes required for tests to pass
1 parent 4e94c93 commit 205ad73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ArrayInterfaceStaticArraysCore/src/ArrayInterfaceStaticArraysCore.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module ArrayInterfaceStaticArraysCore
22

3-
import StaticArraysCore, ArrayInterfaceCore
3+
import StaticArraysCore, ArrayInterfaceCore, Adapt
44
using LinearAlgebra
55

66
ArrayInterfaceCore.ismutable(::Type{<:StaticArraysCore.StaticArray}) = false
@@ -19,6 +19,6 @@ function ArrayInterfaceCore.restructure(x::StaticArraysCore.SArray{S,T,N}, y::St
1919
end
2020
ArrayInterfaceCore.restructure(x::StaticArraysCore.SArray{S}, y) where {S} = StaticArraysCore.SArray{S}(y)
2121

22-
Adapt.adapt_storage(::Type{<:StaticArrays.SArray{S}}, xs::Array) where {S} = SArray{S}(xs)
22+
Adapt.adapt_storage(::Type{<:StaticArraysCore.SArray{S}}, xs::Array) where {S} = SArray{S}(xs)
2323

2424
end

0 commit comments

Comments
 (0)