You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed on discourse (and following the conclusion in JuliaLang/julia#23107), the MArray constructor should return a copy if an MArray is passed to it, but it does not in StaticArrays v0.6.4:
julia> a =@MVector [1,2,3]
3-element MVector{3,Int64}:123
julia>MVector(a) === a
true
The text was updated successfully, but these errors were encountered:
As discussed on discourse (and following the conclusion in JuliaLang/julia#23107), the
MArray
constructor should return a copy if anMArray
is passed to it, but it does not in StaticArrays v0.6.4:The text was updated successfully, but these errors were encountered: