Remove broken assert

Fixes compile issue for linux/gcc which expects a boolean in the assert
statement that it cannot find from std::map
This commit is contained in:
Seth Hillbrand 2022-05-25 16:36:47 -07:00
parent 04771bca9d
commit 11ae5b75b7
1 changed files with 0 additions and 1 deletions

View File

@ -1219,7 +1219,6 @@ void SIM_PLOT_FRAME::menuSaveCsv( wxCommandEvent& event )
wxFFile out( saveDlg.GetPath(), "wb" );
std::map<wxString, TRACE *> traces = GetCurrentPlot()->GetTraces();
assert(traces);
if( traces.size() == 0 )
return;