diff options
Diffstat (limited to 'build2/algorithm.cxx')
-rw-r--r-- | build2/algorithm.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build2/algorithm.cxx b/build2/algorithm.cxx index 1b19fe5..a22837f 100644 --- a/build2/algorithm.cxx +++ b/build2/algorithm.cxx @@ -449,8 +449,9 @@ namespace build2 } target_state - noop_action (action, target&) + noop_action (action a, target& t) { + text << "noop action triggered for " << diag_doing (a, t); assert (false); // We shouldn't be called, see target::recipe(). return target_state::unchanged; } |