diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-05-26 12:15:24 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-05-29 10:21:12 +0200 |
commit | 5393589ec2d898a02c52adf9125a592d3d7ff829 (patch) | |
tree | ff12d99d83f17b3c03332664c28d04527da412ec /libbuild2/context.hxx | |
parent | ab91d32c1b23ea92b988d5618db2938a8c5dc63f (diff) |
Disable counts verification if matched but not executed in resolve_members()
Diffstat (limited to 'libbuild2/context.hxx')
-rw-r--r-- | libbuild2/context.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbuild2/context.hxx b/libbuild2/context.hxx index 7574787..a54d010 100644 --- a/libbuild2/context.hxx +++ b/libbuild2/context.hxx @@ -405,11 +405,13 @@ namespace build2 // decremented after such recipe has been executed. If such a recipe has // skipped executing the operation, then it should increment the skip // count. These two counters are used for progress monitoring and - // diagnostics. + // diagnostics. The resolve count keeps track of the number of targets + // matched but not executed as a result of the resolve_members() calls. // atomic_count dependency_count; atomic_count target_count; atomic_count skip_count; + atomic_count resolve_count; // Build state (scopes, targets, variables, etc). // |