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.
This commit is contained in:
Jeff Young 2025-07-05 19:01:57 +01:00
parent 55f7da60e7
commit c23a3426c3

View File

@ -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 );
}
}
}