Skip to content

Commit 6d304a5

Browse files
Update utils.jl
1 parent df0c00e commit 6d304a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function recursivecopy{T<:AbstractArray,N}(a::AbstractArray{T,N})
66
[recursivecopy(x) for x in a]
77
end
88

9-
function recursivecopy!{T<:SArray,N}(b::AbstractArray{T,N},a::AbstractArray{T,N})
9+
function recursivecopy!{T<:StaticArray,N}(b::AbstractArray{T,N},a::AbstractArray{T,N})
1010
@inbounds for i in eachindex(a)
1111
b[i] = a[i]
1212
end

0 commit comments

Comments
 (0)