Forgot to actually change the fmt specifiers...
This commit is contained in:
parent
77046e9506
commit
9f522e1343
|
@ -547,7 +547,7 @@ template <>
|
||||||
wxString SIM_VALUE_BOOL::ToString( NOTATION aNotation ) const
|
wxString SIM_VALUE_BOOL::ToString( NOTATION aNotation ) const
|
||||||
{
|
{
|
||||||
if( m_value )
|
if( m_value )
|
||||||
return fmt::format( "%d", *m_value );
|
return fmt::format( "{:d}", *m_value );
|
||||||
|
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
@ -570,7 +570,7 @@ wxString SIM_VALUE_INT::ToString( NOTATION aNotation ) const
|
||||||
long dummy = 0;
|
long dummy = 0;
|
||||||
std::string metricSuffix = SIM_VALUE_PARSER::ExponentToMetricSuffix(
|
std::string metricSuffix = SIM_VALUE_PARSER::ExponentToMetricSuffix(
|
||||||
static_cast<double>( exponent ), dummy, aNotation );
|
static_cast<double>( exponent ), dummy, aNotation );
|
||||||
return fmt::format( "%ld%s", value, metricSuffix );
|
return fmt::format( "{}{}", value, metricSuffix );
|
||||||
}
|
}
|
||||||
|
|
||||||
return "";
|
return "";
|
||||||
|
@ -589,7 +589,7 @@ wxString SIM_VALUE_FLOAT::ToString( NOTATION aNotation ) const
|
||||||
SIM_VALUE_PARSER::ExponentToMetricSuffix( exponent, reductionExponent, aNotation );
|
SIM_VALUE_PARSER::ExponentToMetricSuffix( exponent, reductionExponent, aNotation );
|
||||||
double reducedValue = *m_value / std::pow( 10, reductionExponent );
|
double reducedValue = *m_value / std::pow( 10, reductionExponent );
|
||||||
|
|
||||||
return fmt::format( "%g%s", reducedValue, metricSuffix );
|
return fmt::format( "{:g}{}", reducedValue, metricSuffix );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return "";
|
return "";
|
||||||
|
@ -600,7 +600,7 @@ template <>
|
||||||
wxString SIM_VALUE_COMPLEX::ToString( NOTATION aNotation ) const
|
wxString SIM_VALUE_COMPLEX::ToString( NOTATION aNotation ) const
|
||||||
{
|
{
|
||||||
if( m_value )
|
if( m_value )
|
||||||
return fmt::format( "%g+%gi", m_value->real(), m_value->imag() );
|
return fmt::format( "{:g}+{:g}i", m_value->real(), m_value->imag() );
|
||||||
|
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue