diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-05-25 12:34:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-05-29 10:21:12 +0200 |
commit | 56d79a62e64180f639dad02f0887fef5d57bb096 (patch) | |
tree | d860e7a0e46d40e890c3913d523596825584c09d /libbuild2/rule.hxx | |
parent | 9650726961a281ea982660c2cc82d4da046b5622 (diff) |
Explicit group: pattern members
Diffstat (limited to 'libbuild2/rule.hxx')
-rw-r--r-- | libbuild2/rule.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libbuild2/rule.hxx b/libbuild2/rule.hxx index b89821b..4f77432 100644 --- a/libbuild2/rule.hxx +++ b/libbuild2/rule.hxx @@ -333,8 +333,11 @@ namespace build2 virtual bool match (action, const target&, const string&, match_extra&) const = 0; + // Append additional group members. Note that this function should handle + // both ad hoc and explicit groups. + // virtual void - apply_adhoc_members (action, target&, + apply_group_members (action, target&, const scope& base, match_extra&) const = 0; |