mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Add missing default no-op to switch.
This commit is contained in:
parent
34e208368d
commit
d0acee2a9a
@ -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 ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user