From 11ae5b75b7a595fc561ff16b9ec25274859d1bb7 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Wed, 25 May 2022 16:36:47 -0700 Subject: [PATCH] Remove broken assert Fixes compile issue for linux/gcc which expects a boolean in the assert statement that it cannot find from std::map --- eeschema/sim/sim_plot_frame.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/eeschema/sim/sim_plot_frame.cpp b/eeschema/sim/sim_plot_frame.cpp index d85e203f7e..1566c98367 100644 --- a/eeschema/sim/sim_plot_frame.cpp +++ b/eeschema/sim/sim_plot_frame.cpp @@ -1219,7 +1219,6 @@ void SIM_PLOT_FRAME::menuSaveCsv( wxCommandEvent& event ) wxFFile out( saveDlg.GetPath(), "wb" ); std::map traces = GetCurrentPlot()->GetTraces(); - assert(traces); if( traces.size() == 0 ) return;