Coverity issue fix.

This commit is contained in:
Wayne Stambaugh 2021-10-29 10:43:40 -04:00
parent 71b07b59c5
commit e1846c33d9
1 changed files with 6 additions and 3 deletions

View File

@ -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 )
{ {
} }