mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-29 22:38:28 +08:00
Coding - Deprecate NCollection_Vector (#1230)
- Updated multiple files to replace instances of NCollection_Vector with NCollection_DynamicArray
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user