From fc27ec48c9d63879e4b0f049060e943233cb540d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 17 Oct 2016 15:43:47 +0200 Subject: Cleanup match_result mess --- build2/install/rule | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'build2/install/rule') diff --git a/build2/install/rule b/build2/install/rule index 4ad91bb..94ce65b 100644 --- a/build2/install/rule +++ b/build2/install/rule @@ -20,10 +20,10 @@ namespace build2 { public: virtual match_result - match (action, target&, const string&) const; + match (action, target&, const string&) const override; virtual recipe - apply (action, target&, const match_result&) const; + apply (action, target&) const override; }; struct install_dir; @@ -32,7 +32,10 @@ namespace build2 { public: virtual match_result - match (action, target&, const string&) const; + match (action, target&, const string&) const override; + + virtual recipe + apply (action, target&) const override; // Return NULL if this prerequisite should be ignored and pointer to its // target otherwise. The default implementation ignores prerequsites that @@ -41,9 +44,6 @@ namespace build2 virtual target* filter (action, target&, prerequisite_member) const; - virtual recipe - apply (action, target&, const match_result&) const; - // Extra installation hooks. // using install_dir = install::install_dir; -- cgit v1.1