From 5925c11a1fe8b2e02b790dd40b031ae005d5b68f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 10 Mar 2015 15:42:04 +0200 Subject: Further operation implementation --- build/algorithm.ixx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'build/algorithm.ixx') diff --git a/build/algorithm.ixx b/build/algorithm.ixx index 02c223c..e33566b 100644 --- a/build/algorithm.ixx +++ b/build/algorithm.ixx @@ -5,12 +5,12 @@ namespace build { void - match_impl (target&); + match_impl (action, target&); inline void - match (target& t) + match (action a, target& t) { - if (!t.recipe ()) - match_impl (t); + if (!t.recipe (a)) + match_impl (a, t); } } -- cgit v1.1