From 9160fdb45efd03cfddd0e34a6f625cf492fd305f Mon Sep 17 00:00:00 2001 From: Alexander Lauser Date: Mon, 28 Jul 2014 19:07:08 +0200 Subject: [PATCH] Fixed bug 10222. --- include/boost/graph/strong_components.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/graph/strong_components.hpp b/include/boost/graph/strong_components.hpp index 61345bdc..f1bd56d6 100644 --- a/include/boost/graph/strong_components.hpp +++ b/include/boost/graph/strong_components.hpp @@ -64,6 +64,7 @@ namespace boost { do { w = s.top(); s.pop(); put(comp, w, c); + put(root, w, v); } while (w != v); ++c; }