diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-03-08 10:57:52 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-03-08 10:59:20 +0200 |
commit | 2ede341d59b4ab259caf808dfa65c0ac380ba347 (patch) | |
tree | a69e7b9f6a943692cc81b22cd98c8df97c1e9e19 /libbuild2/target-state.hxx | |
parent | c5022fa04b64a9b572cd468837b934eaf5999e1a (diff) |
Improve performance of update during match for multiple targets
Diffstat (limited to 'libbuild2/target-state.hxx')
-rw-r--r-- | libbuild2/target-state.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbuild2/target-state.hxx b/libbuild2/target-state.hxx index 3457b13..48d683d 100644 --- a/libbuild2/target-state.hxx +++ b/libbuild2/target-state.hxx @@ -18,9 +18,11 @@ namespace build2 // Note that postponed is "greater" than unchanged since it may result in // the changed state. // + // Note also that value 0 is available to indicate absent/invalid state. + // enum class target_state: uint8_t { - unknown, + unknown = 1, unchanged, postponed, busy, |