Fix uninitialized variables.

This commit is contained in:
Jeff Young 2021-06-24 11:02:13 +01:00
parent 95ab53d119
commit a8028e3bd1
1 changed files with 10 additions and 2 deletions

View File

@ -53,8 +53,16 @@ public:
using single_row = std::vector<std::string>;
FABMASTER() :
has_pads( false ), has_comps( false ), has_graphic( false ),
has_nets( false ), has_pins( false )
has_pads( false ),
has_comps( false ),
has_graphic( false ),
has_nets( false ),
has_pins( false ),
m_progressReporter( nullptr ),
m_doneCount( 0 ),
m_lastProgressCount( 0 ),
m_totalCount( 0 )
{}
bool Read( const std::string& aFile );