aboutsummaryrefslogtreecommitdiff
path: root/build2/cli
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2020-07-13 09:30:52 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2020-07-13 09:30:52 +0200
commit4b15244f65eb246d4e5d98ebfc1aa3137dc7275e (patch)
tree7bb1564772662ef22ea0dc12788938b28213b57c /build2/cli
parentdb73844a1e11787025a8642f69a52b5f9c87aea2 (diff)
Add ability to extend rule interface in source-compatible manner
Diffstat (limited to 'build2/cli')
-rw-r--r--build2/cli/rule.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/cli/rule.hxx b/build2/cli/rule.hxx
index 64f1614..b3ecc2c 100644
--- a/build2/cli/rule.hxx
+++ b/build2/cli/rule.hxx
@@ -23,7 +23,7 @@ namespace build2
// @@ Redo as two separate rules?
//
- class compile_rule: public rule, virtual data
+ class compile_rule: public simple_rule, virtual data
{
public:
compile_rule (data&& d): data (move (d)) {}