diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-11-07 22:19:00 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-11-07 22:19:00 +0300 |
commit | 387137644bae262e7f13ed937e2c1250e5030307 (patch) | |
tree | 0041346c22c7588684a92fc0f269eb8ddc538e7b /mod/mod-build-result.cxx | |
parent | 9a9261c467eae0f9ca7b1aea050964dd19ea2efb (diff) |
Fix 'lambda capture is not used' warning
Diffstat (limited to 'mod/mod-build-result.cxx')
-rw-r--r-- | mod/mod-build-result.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/mod-build-result.cxx b/mod/mod-build-result.cxx index 7f73172..8b985be 100644 --- a/mod/mod-build-result.cxx +++ b/mod/mod-build-result.cxx @@ -409,7 +409,7 @@ handle (request& rq, response&) // Send notification emails to the interested parties. // - auto send_email = [&pkg, &bld, &subj, &error, &trace, &print_args, this] + auto send_email = [&bld, &subj, &error, &trace, &print_args, this] (const string& to) { try |