1
0
Fork 0

Minor clean up of shadowed variable

This commit is contained in:
Joris van Rantwijk 2023-05-12 20:59:11 +02:00
parent da0040ba27
commit ee14d45aa6
1 changed files with 2 additions and 2 deletions

View File

@ -1342,8 +1342,8 @@ struct MatchingContext
// Add all vertices inside the newly labeled S-blossom to the queue. // Add all vertices inside the newly labeled S-blossom to the queue.
for_vertices_in_blossom(bx, for_vertices_in_blossom(bx,
[this](VertexId x) { [this](VertexId v) {
queue.push_back(x); queue.push_back(v);
}); });
} }