Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
georgthegreat committed Dec 21, 2024
1 parent 05edb38 commit 1a9cab9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/graph/hawick_circuits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ namespace hawick_circuits_detail
// documented above.
bool blocked_map_starts_all_unblocked() const
{
for (Vertex v: vertices(graph_))
if (is_blocked(v))
for (auto it = vertices(graph_).first; it != vertices(graph_).second; ++it)
if (is_blocked(*it))
return false;
return true;
}
Expand Down

0 comments on commit 1a9cab9

Please sign in to comment.