From 7b9eb752cad04aaadc4552d0f26d307b04af1869 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 7 Feb 2017 08:09:53 +0200 Subject: Pass const target& to recipes --- build2/install/rule | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build2/install/rule') diff --git a/build2/install/rule b/build2/install/rule index 169c43a..24111ce 100644 --- a/build2/install/rule +++ b/build2/install/rule @@ -53,12 +53,12 @@ namespace build2 using install_dir = install::install_dir; virtual void - install_extra (file&, const install_dir&) const; + install_extra (const file&, const install_dir&) const; // Return true if anything was uninstalled. // virtual bool - uninstall_extra (file&, const install_dir&) const; + uninstall_extra (const file&, const install_dir&) const; // Installation "commands". // @@ -84,16 +84,16 @@ namespace build2 // static bool uninstall_f (const install_dir& base, - file* t, + const file* t, const path& name, bool verbose); private: target_state - perform_install (action, target&) const; + perform_install (action, const target&) const; target_state - perform_uninstall (action, target&) const; + perform_uninstall (action, const target&) const; }; } } -- cgit v1.1