Skip to content

Commit

Permalink
Merge pull request diffblue#2282 from diffblue/unused-lambda-capture
Browse files Browse the repository at this point in the history
remove unused 'this' capture
  • Loading branch information
Daniel Kroening authored Jun 5, 2018
2 parents d24f773 + 7bad913 commit d668583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/goto-programs/remove_function_pointers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ void remove_function_pointerst::remove_function_pointer(
// list the names of functions when verbosity is at debug level
conditional_output(
debug(),
[this, &functions](mstreamt &mstream) {
[&functions](mstreamt &mstream) {
mstream << "targets: ";

bool first = true;
Expand Down

0 comments on commit d668583

Please sign in to comment.