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_OPTIONS( ARRAY_TYPE_T aType )
: m_type( aType ), m_shouldNumber( false ), m_numberingStartIsSpecified( false )
ARRAY_OPTIONS( ARRAY_TYPE_T aType ) :
m_type( aType ),
m_shouldNumber( false ),
m_reannotateFootprints( false ),
m_numberingStartIsSpecified( false )
{
}
@ -193,4 +196,4 @@ struct ARRAY_CIRCULAR_OPTIONS : public ARRAY_OPTIONS
};
#endif // PCBNEW_ARRAY_OPTIONS__H
#endif // PCBNEW_ARRAY_OPTIONS__H