Coverity issue fix.
This commit is contained in:
parent
71b07b59c5
commit
e1846c33d9
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue