Coverity issue fix.
This commit is contained in:
parent
71b07b59c5
commit
e1846c33d9
|
@ -42,8 +42,11 @@ public:
|
||||||
ARRAY_CIRCULAR, ///< A circular array
|
ARRAY_CIRCULAR, ///< A circular array
|
||||||
};
|
};
|
||||||
|
|
||||||
ARRAY_OPTIONS( ARRAY_TYPE_T aType )
|
ARRAY_OPTIONS( ARRAY_TYPE_T aType ) :
|
||||||
: m_type( aType ), m_shouldNumber( false ), m_numberingStartIsSpecified( false )
|
m_type( aType ),
|
||||||
|
m_shouldNumber( false ),
|
||||||
|
m_reannotateFootprints( false ),
|
||||||
|
m_numberingStartIsSpecified( false )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue