We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df0c00e commit 6d304a5Copy full SHA for 6d304a5
src/utils.jl
@@ -6,7 +6,7 @@ function recursivecopy{T<:AbstractArray,N}(a::AbstractArray{T,N})
6
[recursivecopy(x) for x in a]
7
end
8
9
-function recursivecopy!{T<:SArray,N}(b::AbstractArray{T,N},a::AbstractArray{T,N})
+function recursivecopy!{T<:StaticArray,N}(b::AbstractArray{T,N},a::AbstractArray{T,N})
10
@inbounds for i in eachindex(a)
11
b[i] = a[i]
12
0 commit comments