From 19c37866524f60a7710b256dd13bf1da9f8cff16 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 23 Jan 2016 11:12:47 +0200 Subject: Change target_key::ext from pointer to pointer to reference to pointer Probably can also do for the rest of the target_key members. --- build2/algorithm.ixx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build2/algorithm.ixx') diff --git a/build2/algorithm.ixx b/build2/algorithm.ixx index 9f6c8bc1..cdb76b5d 100644 --- a/build2/algorithm.ixx +++ b/build2/algorithm.ixx @@ -35,7 +35,7 @@ namespace build2 scope* scope) { return search ( - prerequisite_key {nullptr, {&type, &dir, &name, &ext}, scope}); + prerequisite_key {nullptr, {&type, &dir, &name, ext}, scope}); } template -- cgit