From ee14d45aa657089b9195add46d814b7049d4f91d Mon Sep 17 00:00:00 2001 From: Joris van Rantwijk Date: Fri, 12 May 2023 20:59:11 +0200 Subject: [PATCH] Minor clean up of shadowed variable --- cpp/mwmatching.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/mwmatching.h b/cpp/mwmatching.h index b32a9e3..6ae16dd 100644 --- a/cpp/mwmatching.h +++ b/cpp/mwmatching.h @@ -1342,8 +1342,8 @@ struct MatchingContext // Add all vertices inside the newly labeled S-blossom to the queue. for_vertices_in_blossom(bx, - [this](VertexId x) { - queue.push_back(x); + [this](VertexId v) { + queue.push_back(v); }); }