Skip to content

Commit a7ba6a2

Browse files
authored
remove ambiguous copyto! method (#1098)
* remove ambiguous copyto! method * Bump patch version
1 parent f7b8ed2 commit a7ba6a2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "StaticArrays"
22
uuid = "90137ffa-7385-5640-81b9-e52037218182"
3-
version = "1.5.8"
3+
version = "1.5.9"
44

55
[deps]
66
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

src/broadcast.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ static_check_broadcast_shape(::Tuple{}, ::Tuple{}) = ()
6262
return _broadcast(f, Size(map(length, ax)), argsizes, as...)
6363
end
6464
# copyto! overloads
65-
@inline Base.copyto!(dest, B::Broadcasted{<:StaticArrayStyle}) = _copyto!(dest, B)
6665
@inline Base.copyto!(dest::AbstractArray, B::Broadcasted{<:StaticArrayStyle}) = _copyto!(dest, B)
6766
@inline function _copyto!(dest, B::Broadcasted{StaticArrayStyle{M}}) where M
6867
flat = broadcast_flatten(B); as = flat.args; f = flat.f

0 commit comments

Comments
 (0)