diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-03 17:58:46 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-03 17:58:46 +0200 |
commit | 467d700c66582471013a07384318d0142d2f3de2 (patch) | |
tree | 3b702d291f50f6ec9989e72edc567cd0befd0998 /build/algorithm.ixx | |
parent | abb7bf1045fde14f6ef87c8941ee22af233af397 (diff) |
Fix few bugs
Diffstat (limited to 'build/algorithm.ixx')
-rw-r--r-- | build/algorithm.ixx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/algorithm.ixx b/build/algorithm.ixx index ce581c5..bb66b53 100644 --- a/build/algorithm.ixx +++ b/build/algorithm.ixx @@ -126,7 +126,8 @@ namespace build switch (target_state ts = t.state ()) { case target_state::unchanged: - case target_state::changed: return ts; + case target_state::changed: + return ts; default: { // Handle the "last" execution mode. |