aboutsummaryrefslogtreecommitdiff
path: root/build2/cli/rule.cxx
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.cxx
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.cxx')
-rw-r--r--build2/cli/rule.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/build2/cli/rule.cxx b/build2/cli/rule.cxx
index d05b190..42f2176 100644
--- a/build2/cli/rule.cxx
+++ b/build2/cli/rule.cxx
@@ -43,10 +43,10 @@ namespace build2
return false;
}
- match_result compile::
+ bool compile_rule::
match (action a, target& xt, const string&) const
{
- tracer trace ("cli::compile::match");
+ tracer trace ("cli::compile_rule::match");
if (cli_cxx* pt = xt.is_a<cli_cxx> ())
{
@@ -149,7 +149,7 @@ namespace build2
}
}
- recipe compile::
+ recipe compile_rule::
apply (action a, target& xt) const
{
if (cli_cxx* pt = xt.is_a<cli_cxx> ())
@@ -208,7 +208,7 @@ namespace build2
}
}
- target_state compile::
+ target_state compile_rule::
perform_update (action a, const target& xt)
{
const cli_cxx& t (xt.as<cli_cxx> ());