From b2f8ffda06d55fdb93cc5f69fd22f38d761c1712 Mon Sep 17 00:00:00 2001 From: lkdvos Date: Wed, 13 Sep 2023 14:42:41 +0200 Subject: [PATCH] Fix `convert(ProductSpace, V)` --- src/spaces/productspace.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spaces/productspace.jl b/src/spaces/productspace.jl index e2239a54..368df0d5 100644 --- a/src/spaces/productspace.jl +++ b/src/spaces/productspace.jl @@ -257,4 +257,4 @@ Base.convert(::Type{S}, P::ProductSpace{S,0}) where {S<:ElementarySpace} = oneun Base.convert(::Type{S}, P::ProductSpace{S}) where {S<:ElementarySpace} = fuse(P.spaces...) # ElementarySpace to ProductSpace -Base.convert(::Type{<:ProductSpace{S}}, V::S) where {S<:ElementarySpace} = ⊗(V) \ No newline at end of file +Base.convert(::Type{<:ProductSpace}, V::S) where {S<:ElementarySpace} = ⊗(V) \ No newline at end of file