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.
uninitialized
1 parent e814a11 commit d0c17a1Copy full SHA for d0c17a1
src/definitions.jl
@@ -36,7 +36,7 @@ realfloat(x::AbstractArray{T}) where {T<:Real} = copy1(typeof(fftfloat(zero(T)))
36
37
# copy to a 1-based array, using circular permutation
38
function copy1(::Type{T}, x) where T
39
- y = Array{T}(map(length, Compat.axes(x)))
+ y = Array{T}(uninitialized, map(length, Compat.axes(x)))
40
Base.circcopy!(y, x)
41
end
42
0 commit comments