Uninitialized variables.

This commit is contained in:
Jeff Young 2025-06-14 19:54:34 +01:00
parent c9ee462652
commit 17d2a05df0
2 changed files with 6 additions and 3 deletions

View File

@ -37,7 +37,8 @@ public:
TRANSLINE_CALCULATION_BASE( { TCP::SKIN_DEPTH, TCP::EPSILON_EFF, TCP::EPSILONR, TCP::T, TCP::STRIPLINE_A,
TCP::H, TCP::Z0, TCP::LOSS_CONDUCTOR, TCP::PHYS_LEN, TCP::LOSS_DIELECTRIC,
TCP::FREQUENCY, TCP::TAND, TCP::PHYS_WIDTH, TCP::UNIT_PROP_DELAY, TCP::ANG_L,
TCP::SIGMA, TCP::MURC } )
TCP::SIGMA, TCP::MURC } ),
unit_prop_delay( 0.0 )
{
}

View File

@ -41,8 +41,10 @@ class SCH_RULE_AREA : public SCH_SHAPE
{
public:
SCH_RULE_AREA() :
SCH_SHAPE( SHAPE_T::POLY, LAYER_RULE_AREAS, 0 /* line width */, FILL_T::NO_FILL,
SCH_RULE_AREA_T )
SCH_SHAPE( SHAPE_T::POLY, LAYER_RULE_AREAS, 0 /* line width */, FILL_T::NO_FILL, SCH_RULE_AREA_T ),
m_excludedFromSim( false ),
m_excludedFromBOM( false ),
m_excludedFromBoard( false )
{
SetLayer( LAYER_RULE_AREAS );
}