From ecf483702f0068c6ff1333ea2a848438ce4aeb83 Mon Sep 17 00:00:00 2001 From: Godisemo Date: Fri, 14 Sep 2018 10:36:49 +0200 Subject: [PATCH] Fix deprecated syntax in PGFPlots backend --- src/backends/pgfplots.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pgfplots.jl b/src/backends/pgfplots.jl index 017c232a..26865bb9 100644 --- a/src/backends/pgfplots.jl +++ b/src/backends/pgfplots.jl @@ -413,7 +413,7 @@ function pgf_axis(sp::Subplot, letter) push!(style, string(letter, "tick = {", join(tick_values,","), "}")) if axis[:showaxis] && axis[:scale] in (:ln, :log2, :log10) && axis[:ticks] == :auto # wrap the power part of label with } - tick_labels = Vector{String}(length(ticks[2])) + tick_labels = Vector{String}(undef, length(ticks[2])) for (i, label) in enumerate(ticks[2]) base, power = split(label, "^") power = string("{", power, "}")