Fix a compil issue.

This commit is contained in:
jean-pierre charras 2023-02-12 09:16:42 +01:00
parent 5c45b53f88
commit 1fb2d138b4
1 changed files with 4 additions and 0 deletions

View File

@ -124,6 +124,8 @@ wxString spice_prefix( SPICE_VALUE::UNIT_PREFIX aPrefix )
case SPICE_VALUE::PFX_GIGA: return wxT( "G" );
case SPICE_VALUE::PFX_TERA: return wxT( "T" );
}
return wxEmptyString;
}
@ -142,6 +144,8 @@ wxString si_prefix( SPICE_VALUE::UNIT_PREFIX aPrefix )
case SPICE_VALUE::PFX_GIGA: return wxT( "G" );
case SPICE_VALUE::PFX_TERA: return wxT( "T" );
}
return wxEmptyString;
}