diff options
Diffstat (limited to 'libbuild2/cc/install-rule.hxx')
-rw-r--r-- | libbuild2/cc/install-rule.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbuild2/cc/install-rule.hxx b/libbuild2/cc/install-rule.hxx index 70ee711..6998d63 100644 --- a/libbuild2/cc/install-rule.hxx +++ b/libbuild2/cc/install-rule.hxx @@ -43,6 +43,8 @@ namespace build2 virtual bool match (action, target&, const string&, match_extra&) const override; + using file_rule::match; // Make Clang happy. + virtual recipe apply (action, target&) const override; @@ -78,6 +80,8 @@ namespace build2 virtual bool match (action, target&, const string&, match_extra&) const override; + using alias_rule::match; // Make Clang happy. + private: const link_rule& link_; }; |