Browse Source

Remove noisy assert. KICAD-6XH

We may need to support showing complex numbers at some
point, but as we don't today it's sort of moot.
pull/18/head
Jeff Young 4 months ago
parent
commit
513bdadf81
  1. 3
      eeschema/sim/ngspice.cpp

3
eeschema/sim/ngspice.cpp

@ -179,10 +179,7 @@ std::vector<double> NGSPICE::GetRealVector( const std::string& aName, int aMaxLe
else if( vi->v_compdata )
{
for( int i = 0; i < length; i++ )
{
wxASSERT( vi->v_compdata[i].cx_imag == 0.0 );
data.push_back( vi->v_compdata[i].cx_real );
}
}
}

Loading…
Cancel
Save