aboutsummaryrefslogtreecommitdiff
path: root/build2/cli/rule.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-01-20 13:46:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-02-03 14:35:45 +0200
commit934f2a9a90c5cad3cdc8a66b50c17827a3ddbcee (patch)
treef35f106e5369e98350327c79080c571195234c0b /build2/cli/rule.hxx
parent280f4a5bf787587227ca193cd59c6bd74091db70 (diff)
Get rid of action rule override semantics
Instead we now have two more or less separate match states for outer and inner parts of an action.
Diffstat (limited to 'build2/cli/rule.hxx')
-rw-r--r--build2/cli/rule.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/cli/rule.hxx b/build2/cli/rule.hxx
index 9af1da4..ba6337a 100644
--- a/build2/cli/rule.hxx
+++ b/build2/cli/rule.hxx
@@ -16,12 +16,12 @@ namespace build2
{
// @@ Redo as two separate rules?
//
- class compile: public rule
+ class compile_rule: public rule
{
public:
- compile () {}
+ compile_rule () {}
- virtual match_result
+ virtual bool
match (action, target&, const string&) const override;
virtual recipe