From cf6b3e34b59ad120111e0c1ead779bbb3a70c38d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 12 Mar 2015 15:43:17 +0200 Subject: Implement clean operation --- build/cxx/rule | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'build/cxx/rule') diff --git a/build/cxx/rule b/build/cxx/rule index 1dfb8b5..d2378d2 100644 --- a/build/cxx/rule +++ b/build/cxx/rule @@ -17,36 +17,36 @@ namespace build namespace cxx { // @@ Can't we do match(obj&) and then registration code extracts - // that. And no virtuals. + // that. And no virtuals? // class compile: public rule { public: virtual void* - match (action a, target&, const std::string& hint) const; + match (action, target&, const std::string& hint) const; virtual recipe - apply (action a, target&, void*) const; + apply (action, target&, void*) const; static target_state - update (action a, target&); + perform_update (action, target&); private: void - inject_prerequisites (action a, obj&, const cxx&, scope&) const; + inject_prerequisites (action, obj&, const cxx&, scope&) const; }; class link: public rule { public: virtual void* - match (action a, target&, const std::string& hint) const; + match (action, target&, const std::string& hint) const; virtual recipe - apply (action a, target&, void*) const; + apply (action, target&, void*) const; static target_state - update (action a, target&); + perform_update (action, target&); }; } } -- cgit v1.1