Fix uninitialized variables.
This commit is contained in:
parent
95ab53d119
commit
a8028e3bd1
|
@ -53,8 +53,16 @@ public:
|
||||||
|
|
||||||
using single_row = std::vector<std::string>;
|
using single_row = std::vector<std::string>;
|
||||||
FABMASTER() :
|
FABMASTER() :
|
||||||
has_pads( false ), has_comps( false ), has_graphic( false ),
|
has_pads( false ),
|
||||||
has_nets( false ), has_pins( 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 );
|
bool Read( const std::string& aFile );
|
||||||
|
|
Loading…
Reference in New Issue