Skip to content

Commit fa19c3b

Browse files
authored
Merge pull request #510 from Becheler/fix/howard-unused-lambda-capture
fix: lambda capture 'this' is not used
2 parents 1de0d5c + 476e379 commit fa19c3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/graph/howard_cycle_ratio.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ namespace detail
357357
boost::tie(uv_itr, vie) = vertices(m_g);
358358
float_t mcr = m_bound;
359359
while ((uv_itr = std::find_if(uv_itr, vie,
360-
[this, &vcm_](const auto& uv)
360+
[&](const auto& uv)
361361
{
362362
return std::equal_to< my_color_type >()(
363363
my_white, vcm_[uv]);

0 commit comments

Comments
 (0)