mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Add some variables to ctor initializer list for CONSTRUCTION_MANAGER
m_batchesMutex in particular needs to be ready before accptConstructionItems is called Sentry KICAD-TYJ
This commit is contained in:
parent
0730a0bc86
commit
b07fdd0e37
@ -163,7 +163,11 @@ struct CONSTRUCTION_MANAGER::PENDING_BATCH
|
||||
|
||||
|
||||
CONSTRUCTION_MANAGER::CONSTRUCTION_MANAGER( CONSTRUCTION_VIEW_HANDLER& aHelper ) :
|
||||
m_viewHandler( aHelper )
|
||||
m_viewHandler( aHelper ),
|
||||
m_persistentConstructionBatch(),
|
||||
m_temporaryConstructionBatches(),
|
||||
m_involvedItems(),
|
||||
m_batchesMutex()
|
||||
{
|
||||
const std::chrono::milliseconds acceptanceTimeout(
|
||||
ADVANCED_CFG::GetCfg().m_ExtensionSnapTimeoutMs );
|
||||
|
Loading…
x
Reference in New Issue
Block a user