mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-13 17:53:11 +02:00
Uninitialized variables.
This commit is contained in:
parent
c9ee462652
commit
17d2a05df0
@ -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 )
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -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 );
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user