aboutsummaryrefslogtreecommitdiff
path: root/build2/cli/rule.cxx
diff options
context:
space:
mode:
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> ());