aboutsummaryrefslogtreecommitdiff
path: root/build2/algorithm.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-01-23 11:12:47 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-01-23 11:12:47 +0200
commit19c37866524f60a7710b256dd13bf1da9f8cff16 (patch)
treef396b93ac6c7f8d9b73d9ebec5cb6a9334bacee3 /build2/algorithm.ixx
parent8c5688d77555091615dccd90ea1cf28b89c08d13 (diff)
Change target_key::ext from pointer to pointer to reference to pointer
Probably can also do for the rest of the target_key members.
Diffstat (limited to 'build2/algorithm.ixx')
-rw-r--r--build2/algorithm.ixx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/algorithm.ixx b/build2/algorithm.ixx
index 9f6c8bc..cdb76b5 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 <typename T>