diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-26 17:25:10 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-26 17:25:10 +0200 |
commit | 18568ff0ff3dce89d694b494c5dfc9a32e63c9e6 (patch) | |
tree | cd36895fdab3b30b8b61fcc3e12f8a92bb292203 /build/algorithm.cxx | |
parent | 95239b7c5404965d4f5ef997b5b75bf542a25192 (diff) |
Part two of dependency injection with auto-generation support
Diffstat (limited to 'build/algorithm.cxx')
-rw-r--r-- | build/algorithm.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/algorithm.cxx b/build/algorithm.cxx index f4da3bd..4f30944 100644 --- a/build/algorithm.cxx +++ b/build/algorithm.cxx @@ -196,13 +196,13 @@ namespace build g.recipe (a, p.first->apply (a, g, p.second)); } - // Note the we use execute_impl() rather than execute() here + // Note that we use execute_direct() rather than execute() here // to sidestep the dependents count logic. In this context, // this is by definition the first attempt to execute this // rule (otherwise we would have already known the members // list) and we really do need to execute it now. // - execute_impl (a, g); + execute_direct (a, g); r = g.members (a); assert (r.members != nullptr); // What "next step" did the group expect? |