diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-23 11:12:47 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-23 11:12:47 +0200 |
commit | 19c37866524f60a7710b256dd13bf1da9f8cff16 (patch) | |
tree | f396b93ac6c7f8d9b73d9ebec5cb6a9334bacee3 /build2/b.cxx | |
parent | 8c5688d77555091615dccd90ea1cf28b89c08d13 (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/b.cxx')
-rw-r--r-- | build2/b.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/b.cxx b/build2/b.cxx index 636951a..cc87cec 100644 --- a/build2/b.cxx +++ b/build2/b.cxx @@ -763,7 +763,7 @@ main (int argc, char* argv[]) d.normalize (); - mif->search (rs, target_key {ti, &d, &tn.value, &e}, l, tgs); + mif->search (rs, target_key {ti, &d, &tn.value, e}, l, tgs); } } |