Skip to content

Commit

Permalink
Fix unused-lambda-capture
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Oct 27, 2023
1 parent f932039 commit 7733584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/app/transform/transforms/mcltransform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ void MCLTransform::calculateMCL(float inflation, TransformedGraph& target)
if(_debugIteration)
qDebug() << "Pre nnz" << clusterMatrix.nonZeros();

clusterMatrix.erase([this](float value){ return value < MCL_PRUNE_LIMIT; } );
clusterMatrix.erase([](float value){ return value < MCL_PRUNE_LIMIT; } );

if(_debugIteration)
qDebug() << "Pre-prune nnz" << clusterMatrix.nonZeros();
Expand Down

0 comments on commit 7733584

Please sign in to comment.