File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1321,9 +1321,9 @@ void TxGraphImpl::ApplyDependencies(int level) noexcept
1321
1321
if (clusterset.m_group_data ->m_group_oversized ) return ;
1322
1322
1323
1323
// For each group of to-be-merged Clusters.
1324
- for (const auto & group_data : clusterset.m_group_data ->m_groups ) {
1324
+ for (const auto & group_entry : clusterset.m_group_data ->m_groups ) {
1325
1325
auto cluster_span = std::span{clusterset.m_group_data ->m_group_clusters }
1326
- .subspan (group_data .m_cluster_offset , group_data .m_cluster_count );
1326
+ .subspan (group_entry .m_cluster_offset , group_entry .m_cluster_count );
1327
1327
// Pull in all the Clusters that contain dependencies.
1328
1328
if (level == 1 ) {
1329
1329
for (Cluster*& cluster : cluster_span) {
@@ -1335,7 +1335,7 @@ void TxGraphImpl::ApplyDependencies(int level) noexcept
1335
1335
// Actually apply all to-be-added dependencies (all parents and children from this grouping
1336
1336
// belong to the same Cluster at this point because of the merging above).
1337
1337
auto deps_span = std::span{clusterset.m_deps_to_add }
1338
- .subspan (group_data .m_deps_offset , group_data .m_deps_count );
1338
+ .subspan (group_entry .m_deps_offset , group_entry .m_deps_count );
1339
1339
Assume (!deps_span.empty ());
1340
1340
const auto & loc = m_entries[deps_span[0 ].second ].m_locator [level];
1341
1341
Assume (loc.IsPresent ());
You can’t perform that action at this time.
0 commit comments