diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-08-05 16:11:32 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-08-06 07:20:09 +0200 |
commit | 3a75b8dc68c03128b18ec842b843a201b9b7f45c (patch) | |
tree | 5f9aeec6140806da33ed44902235518bc82d4d86 /libbuild2/cli/rule.cxx | |
parent | c7a6f246aa51bbe40772cb663a3a1d7bc67a941d (diff) |
Rename certain target_set::insert() versions to insert_implied() for clarity
Also clarify the target_decl documentation.
Diffstat (limited to 'libbuild2/cli/rule.cxx')
-rw-r--r-- | libbuild2/cli/rule.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbuild2/cli/rule.cxx b/libbuild2/cli/rule.cxx index 996ca51..7c571d4 100644 --- a/libbuild2/cli/rule.cxx +++ b/libbuild2/cli/rule.cxx @@ -120,7 +120,8 @@ namespace build2 prerequisite_members (a, t))) { if (g == nullptr) - g = &t.ctx.targets.insert<cli_cxx> (t.dir, t.out, t.name, trace); + g = &t.ctx.targets.insert_implied<cli_cxx> ( + t.dir, t.out, t.name, trace); prerequisites ps; ps.push_back (p->as_prerequisite ()); |