File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11name = " StaticArrays"
22uuid = " 90137ffa-7385-5640-81b9-e52037218182"
3- version = " 1.5.0 "
3+ version = " 1.5.1 "
44
55[deps ]
66LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Original file line number Diff line number Diff line change 1919@pure has_eltype (:: Type{<:StaticArray} ) = false
2020@pure has_size (:: Type{<:StaticArray{S}} ) where {S<: Tuple } = @isdefined S
2121@pure has_size (:: Type{<:StaticArray} ) = false
22+ # workaround for https://github.com/JuliaArrays/StaticArrays.jl/issues/1047
23+ has_size (:: Type{SVector} ) = false
24+ has_size (:: Type{MVector} ) = false
25+ has_size (:: Type{SMatrix} ) = false
26+ has_size (:: Type{MMatrix} ) = false
27+ has_size (:: Type{SMatrix{N}} ) where {N} = false
28+ has_size (:: Type{MMatrix{N}} ) where {N} = false
29+
2230@pure has_size1 (:: Type{<:StaticMatrix{M}} ) where {M} = @isdefined M
2331@pure has_size1 (:: Type{<:StaticMatrix} ) = false
2432_size1 (:: Type{<:StaticMatrix{M}} ) where {M} = M
You can’t perform that action at this time.
0 commit comments