2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-01 08:32:11 +00:00

Fixed warning

[SVN r77534]
This commit is contained in:
Jeremiah Willcock
2012-03-25 05:01:58 +00:00
parent 5aa2be67b0
commit 8f8cd154e6

View File

@@ -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;