mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-06 15:04:11 +00:00
Removed warnings
This commit is contained in:
parent
c00d00cac2
commit
6d445631f0
10 changed files with 23 additions and 20 deletions
|
|
@ -449,7 +449,8 @@ void TraceXYPlot::updateXAxis()
|
|||
auto trace = t.first;
|
||||
if(enabled && trace->isVisible()) {
|
||||
// this trace is currently displayed
|
||||
double trace_min, trace_max;
|
||||
double trace_min = std::numeric_limits<double>::max();
|
||||
double trace_max = std::numeric_limits<double>::lowest();
|
||||
switch(XAxis.type) {
|
||||
case XAxisType::Frequency:
|
||||
trace_min = trace->minFreq();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue