7
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:
Jon Evans 2024-10-26 21:48:54 -04:00
parent 840b9aebba
commit 031c5417a1

View File

@ -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;
}
}