File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
name = " StaticArrays"
2
2
uuid = " 90137ffa-7385-5640-81b9-e52037218182"
3
- version = " 1.5.0 "
3
+ version = " 1.5.1 "
4
4
5
5
[deps ]
6
6
LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Original file line number Diff line number Diff line change 19
19
@pure has_eltype (:: Type{<:StaticArray} ) = false
20
20
@pure has_size (:: Type{<:StaticArray{S}} ) where {S<: Tuple } = @isdefined S
21
21
@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
+
22
30
@pure has_size1 (:: Type{<:StaticMatrix{M}} ) where {M} = @isdefined M
23
31
@pure has_size1 (:: Type{<:StaticMatrix} ) = false
24
32
_size1 (:: Type{<:StaticMatrix{M}} ) where {M} = M
You can’t perform that action at this time.
0 commit comments