resaved some files as UTF-8 to silence clangs warnings about illegal character encodings.

This commit is contained in:
Felix Morgner 2013-04-25 18:31:14 -04:00
parent 5c0b735d82
commit 24f95c66db
5 changed files with 5 additions and 5 deletions

View File

@ -869,7 +869,7 @@ void C_MICROSTRIP::show_results()
setResult( 4, atten_dielectric_e, "dB" );
setResult( 5, atten_dielectric_o, "dB" );
setResult( 6, skindepth / UNIT_MICRON, "µm" );
setResult( 6, skindepth / UNIT_MICRON, "µm" );
}

View File

@ -184,7 +184,7 @@ void COPLANAR::show_results()
setResult( 1, atten_cond, "dB" );
setResult( 2, atten_dielectric, "dB" );
setResult( 3, skindepth / UNIT_MICRON, "µm" );
setResult( 3, skindepth / UNIT_MICRON, "µm" );
}

View File

@ -511,7 +511,7 @@ void MICROSTRIP::show_results()
setResult( 1, atten_cond, "dB" );
setResult( 2, atten_dielectric, "dB" );
setResult( 3, skindepth/UNIT_MICRON, "µm" );
setResult( 3, skindepth/UNIT_MICRON, "µm" );
}

View File

@ -123,7 +123,7 @@ void STRIPLINE::show_results()
setResult( 1, atten_cond, "dB" );
setResult( 2, atten_dielectric, "dB" );
setResult( 3, skindepth / UNIT_MICRON, "µm" );
setResult( 3, skindepth / UNIT_MICRON, "µm" );
}

View File

@ -84,7 +84,7 @@ void TWISTEDPAIR::show_results()
setResult( 1, atten_cond, "dB" );
setResult( 2, atten_dielectric, "dB" );
setResult( 3, skindepth / UNIT_MICRON, "µm" );
setResult( 3, skindepth / UNIT_MICRON, "µm" );
}