Add missing default no-op to switch.

This commit is contained in:
Bartosz Taudul 2020-11-23 22:58:40 +01:00
parent 34e208368d
commit d0acee2a9a

View File

@ -4951,6 +4951,8 @@ void Worker::ProcessPlotData( const QueuePlotData& ev )
case PlotDataType::Float: case PlotDataType::Float:
if( !isfinite( ev.data.f ) ) return; if( !isfinite( ev.data.f ) ) return;
break; break;
default:
break;
} }
PlotData* plot = m_data.plots.Retrieve( ev.name, [this] ( uint64_t name ) { PlotData* plot = m_data.plots.Retrieve( ev.name, [this] ( uint64_t name ) {