Coding - Deprecate NCollection_Vector (#1230)

- Updated multiple files to replace instances of NCollection_Vector with NCollection_DynamicArray
This commit is contained in:
Pasukhin Dmitry
2026-04-24 21:47:27 +01:00
committed by GitHub
parent b91b6d48b4
commit 90f5d7b214
311 changed files with 3505 additions and 3427 deletions
@@ -140,8 +140,8 @@ void BRepGraph_LayerRegistry::DispatchNodeModified(const BRepGraph_NodeId theNod
//=================================================================================================
void BRepGraph_LayerRegistry::DispatchNodesModified(
const NCollection_Vector<BRepGraph_NodeId>& theModifiedNodes,
const int theModifiedKindsMask) noexcept
const NCollection_DynamicArray<BRepGraph_NodeId>& theModifiedNodes,
const int theModifiedKindsMask) noexcept
{
if (!HasModificationSubscribers() || theModifiedKindsMask == 0)
return;
@@ -212,8 +212,8 @@ void BRepGraph_LayerRegistry::DispatchRefModified(const BRepGraph_RefId theRef)
//=================================================================================================
void BRepGraph_LayerRegistry::DispatchRefsModified(
const NCollection_Vector<BRepGraph_RefId>& theModifiedRefs,
const int theModifiedRefKindsMask) noexcept
const NCollection_DynamicArray<BRepGraph_RefId>& theModifiedRefs,
const int theModifiedRefKindsMask) noexcept
{
if (!HasRefModificationSubscribers() || theModifiedRefKindsMask == 0)
return;