We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d6a196 + 5c753be commit fdc6199Copy full SHA for fdc6199
include/boost/graph/bron_kerbosch_all_cliques.hpp
@@ -104,7 +104,7 @@ struct max_clique_visitor
104
max_clique_visitor(std::size_t& max) : maximum(max) {}
105
106
template < typename Clique, typename Graph >
107
- inline void clique(const Clique& p, const Graph& g)
+ inline void clique(const Clique& p, const Graph&)
108
{
109
BOOST_USING_STD_MAX();
110
maximum = max BOOST_PREVENT_MACRO_SUBSTITUTION(maximum, p.size());
@@ -220,7 +220,7 @@ namespace detail
220
221
// otherwise, iterate over candidates and and test
222
// for maxmimal cliquiness.
223
- typename Container::iterator i, j;
+ typename Container::iterator i;
224
for (i = cands.begin(); i != cands.end();)
225
226
Vertex candidate = *i;
0 commit comments