aboutsummaryrefslogtreecommitdiff
path: root/build/cli/target
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-07-01 09:11:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-07-01 09:11:31 +0200
commit17b3a78696f0b1fd6f0f60d53ec568cf3b9e32b4 (patch)
treef54f92e5066e1a97a070af248931316cd76b61c3 /build/cli/target
parent70af0087d8efb3f2f7dc9ffdf2568419913f16da (diff)
Cleanup group "see through" design
Diffstat (limited to 'build/cli/target')
-rw-r--r--build/cli/target6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/cli/target b/build/cli/target
index e5bf16d..e72d4e0 100644
--- a/build/cli/target
+++ b/build/cli/target
@@ -23,10 +23,10 @@ namespace build
static const target_type static_type;
};
- class cli_cxx: public target_group
+ class cli_cxx: public target
{
public:
- using target_group::target_group;
+ using target::target;
target* m[3] {nullptr, nullptr, nullptr};
@@ -39,7 +39,7 @@ namespace build
void i (cxx::ixx& t) {m[2] = &t;}
virtual group_view
- members (action) const;
+ group_members (action) const;
public:
virtual const target_type& type () const {return static_type;}