summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/renderer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer.cpp b/src/renderer.cpp
index e482bb0..191172a 100644
--- a/src/renderer.cpp
+++ b/src/renderer.cpp
@@ -65,7 +65,7 @@ Renderer::Renderer(const Configuration& conf, const ColorMap& cmap, const ValueM
this->live_ticks_ = Renderer::GetNiceTicks(vmap.GetLowerBound(), vmap.GetUpperBound(),
"", this->configuration_.GetLiveFFTHeight(), 30); /* no unit, keep it short */
- typeof(this->frequency_ticks_) freq_no_text_ticks;
+ std::list<AxisTick> freq_no_text_ticks;
for (auto& t : this->frequency_ticks_) {
freq_no_text_ticks.emplace_back(std::make_tuple(std::get<0>(t), ""));
}