mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-19 23:31:40 +00:00
Fix build on macOS
This commit is contained in:
parent
840b9aebba
commit
031c5417a1
@ -223,7 +223,8 @@ void CONSTRUCTION_MANAGER::ProposeConstructionItems(
|
||||
const std::size_t hash = HashConstructionBatchSources( *aBatch, aIsPersistent );
|
||||
|
||||
m_activationHelper->ProposeActivation(
|
||||
std::make_unique<PENDING_BATCH>( std::move( *aBatch ), aIsPersistent ), hash );
|
||||
std::make_unique<PENDING_BATCH>( PENDING_BATCH{ std::move( *aBatch ), aIsPersistent } ),
|
||||
hash );
|
||||
}
|
||||
|
||||
|
||||
@ -552,4 +553,4 @@ SNAP_MANAGER::GetConstructionItems() const
|
||||
}
|
||||
|
||||
return batches;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user