From 8f8cd154e645fbec2ef6b38f8cf14c8d971cf88d Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Sun, 25 Mar 2012 05:01:58 +0000 Subject: [PATCH] Fixed warning [SVN r77534] --- include/boost/graph/bron_kerbosch_all_cliques.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/graph/bron_kerbosch_all_cliques.hpp b/include/boost/graph/bron_kerbosch_all_cliques.hpp index 1466dfe5..91960936 100644 --- a/include/boost/graph/bron_kerbosch_all_cliques.hpp +++ b/include/boost/graph/bron_kerbosch_all_cliques.hpp @@ -224,7 +224,7 @@ namespace detail // otherwise, iterate over candidates and and test // for maxmimal cliquiness. - typename Container::iterator i, j, end = cands.end(); + typename Container::iterator i, j; for(i = cands.begin(); i != cands.end(); ) { Vertex candidate = *i;