aboutsummaryrefslogtreecommitdiff
path: root/build2/cli/target
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-02-15 03:55:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-03-02 14:03:34 +0200
commitb37f1aa6398065be806e6605a023189685669885 (patch)
treeb9b32091e3d70a31852302b24c99ecb62465464a /build2/cli/target
parenta64b2ae2099346471ead988d5f2d383d55a9bf89 (diff)
Implement parallel match
Diffstat (limited to 'build2/cli/target')
-rw-r--r--build2/cli/target17
1 files changed, 8 insertions, 9 deletions
diff --git a/build2/cli/target b/build2/cli/target
index c10e4b8..5e51bb4 100644
--- a/build2/cli/target
+++ b/build2/cli/target
@@ -26,13 +26,13 @@ namespace build2
virtual const target_type& dynamic_type () const {return static_type;}
};
- // Standard layout type compatible with target*[3].
+ // Standard layout type compatible with group_view's const target*[3].
//
struct cli_cxx_members
{
- const_ptr<cxx::hxx> h = nullptr;
- const_ptr<cxx::cxx> c = nullptr;
- const_ptr<cxx::ixx> i = nullptr;
+ const cxx::hxx* h = nullptr;
+ const cxx::cxx* c = nullptr;
+ const cxx::ixx* i = nullptr;
};
class cli_cxx: public mtime_target, public cli_cxx_members
@@ -41,14 +41,13 @@ namespace build2
using mtime_target::mtime_target;
virtual group_view
- group_members (action_type);
-
- virtual timestamp
- load_mtime () const;
+ group_members (action_type) const override;
public:
static const target_type static_type;
- virtual const target_type& dynamic_type () const {return static_type;}
+
+ virtual const target_type&
+ dynamic_type () const override {return static_type;}
};
}
}