diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-05-23 09:21:40 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-05-29 10:20:56 +0200 |
commit | 349b34108752e2fcf1ead648ffec8e5acfe4a91c (patch) | |
tree | e7b3a980a4720a230d705a4b175299ed449aaa4f /libbuild2/scope.hxx | |
parent | a020c97722dc8b3d2bfc93eb4f344821b1c8af18 (diff) |
Explicit group: syntax parsing
Diffstat (limited to 'libbuild2/scope.hxx')
-rw-r--r-- | libbuild2/scope.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libbuild2/scope.hxx b/libbuild2/scope.hxx index 5578d0c..8e25d78 100644 --- a/libbuild2/scope.hxx +++ b/libbuild2/scope.hxx @@ -390,8 +390,12 @@ namespace build2 // reference to the target type and an indicator of whether it was // actually created. // + // Note: the flags are OR'ed to the base's flags. + // pair<reference_wrapper<const target_type>, bool> - derive_target_type (const string& name, const target_type& base); + derive_target_type (const string& name, + const target_type& base, + target_type::flag flags = target_type::flag::none); template <typename T> pair<reference_wrapper<const target_type>, bool> |