diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-02 08:01:42 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-02 08:01:42 +0200 |
commit | 39623df224608e77b5a62dabd35b09783198bc87 (patch) | |
tree | 3da359b809055fa737faec8d72d9ed1844e5c447 /build/cli/target.cxx | |
parent | d236d61ee9821abc4e8d3e3928ac2dfa9cb57d98 (diff) |
Various improvements to cli module
Diffstat (limited to 'build/cli/target.cxx')
-rw-r--r-- | build/cli/target.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/cli/target.cxx b/build/cli/target.cxx index b77252d..d8280f2 100644 --- a/build/cli/target.cxx +++ b/build/cli/target.cxx @@ -49,12 +49,12 @@ namespace build static target* cli_cxx_factory (dir_path d, string n, const string* e) { - tracer trace ("cli::cli_cxx::factory"); + tracer trace ("cli::cli_cxx_factory"); // Pre-enter (potential) members as targets. The main purpose // of doing this is to avoid searching for existing files in - // src_base if the buildfile mentions one of them explicitly - // as a prerequisite. + // src_base if the buildfile mentions some of them explicitly + // as prerequisites. // targets.insert<cxx::hxx> (d, n, trace); targets.insert<cxx::cxx> (d, n, trace); @@ -71,7 +71,7 @@ namespace build &cli_cxx_factory, nullptr, &search_target, - true // See through default semantics. + true // "See through" default iteration mode. }; } } |