From 64a877b252d087e9d908454abf5986850cd8d7f2 Mon Sep 17 00:00:00 2001 From: "femtocleaner[bot]" Date: Mon, 2 Jul 2018 20:33:16 +0000 Subject: [PATCH] Fix deprecations --- src/utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.jl b/src/utils.jl index 44967620..606642b6 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -45,7 +45,7 @@ end function vecvecapply(f,v) - sol = Vector{eltype(eltype(v))}(0) + sol = Vector{eltype(eltype(v))}() for i in eachindex(v) for j in eachindex(v[i]) push!(sol,v[i][j])