aboutsummaryrefslogtreecommitdiff
path: root/build2/algorithm.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-09-12 17:31:52 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-09-25 00:30:49 +0300
commit984a0217af64c734938c330b09ed21d1253dea8d (patch)
tree50277861e059be41587b17a318afb68cb03e038c /build2/algorithm.cxx
parentd30e1a0e8f5e4f324e169d87908a5134a58aa449 (diff)
Make use of libpkgconf library
Diffstat (limited to 'build2/algorithm.cxx')
-rw-r--r--build2/algorithm.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/algorithm.cxx b/build2/algorithm.cxx
index 361c80f..6976343 100644
--- a/build2/algorithm.cxx
+++ b/build2/algorithm.cxx
@@ -599,7 +599,7 @@ namespace build2
return make_pair (false, target_state::unknown);
if (task_count == nullptr)
- return match_impl (a, l, /*step*/ false, try_match);
+ return match_impl (a, l, false /* step */, try_match);
// Pass "disassembled" lock since the scheduler queue doesn't support
// task destruction. Also pass our diagnostics stack (this is safe since
@@ -616,7 +616,7 @@ namespace build2
phase_lock pl (run_phase::match);
{
target_lock l {&t, offset}; // Reassemble.
- match_impl (a, l, /*step*/ false, try_match);
+ match_impl (a, l, false /* step */, try_match);
// Unlock withing the match phase.
}
},