diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-05-14 19:07:48 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-05-14 19:07:48 +0300 |
commit | c5b73913e62926a8491e1e70d6bb2a95133e1baa (patch) | |
tree | da2a8779917d88f09417b908f0e88a98dea557ba | |
parent | 2df57d72b65012674e6bc64dec66d9b3fd7f993b (diff) |
Fix 'unused lambda capture' warning
-rw-r--r-- | bpkg/pkg-command.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/pkg-command.cxx b/bpkg/pkg-command.cxx index bf7107e..93e1779 100644 --- a/bpkg/pkg-command.cxx +++ b/bpkg/pkg-command.cxx @@ -53,7 +53,7 @@ namespace bpkg // string bspec; - auto run = [&trace, &c, &o, &lvars, &gvars, &bspec] ( + auto run = [&trace, &o, &lvars, &gvars, &bspec] ( const strings& vars = strings ()) { if (!bspec.empty ()) |