diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-08-05 15:26:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-08-05 15:26:45 +0200 |
commit | c5f14c1735d1eb1c7df29515da78e3acde15a5a3 (patch) | |
tree | ebf1ba81e1eabac7d3e3253f7c2401a92c577160 /libbuild2/cc/common.hxx | |
parent | 3f10e86873306e443159d3b8296eb024461e5c2f (diff) |
Implement traversal pruning in process_libraries()
Diffstat (limited to 'libbuild2/cc/common.hxx')
-rw-r--r-- | libbuild2/cc/common.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/cc/common.hxx b/libbuild2/cc/common.hxx index a62b91b..f15bf23 100644 --- a/libbuild2/cc/common.hxx +++ b/libbuild2/cc/common.hxx @@ -292,10 +292,10 @@ namespace build2 bool, lflags, const function<bool (const target&, bool)>&, - const function<void (const target* const*, + const function<bool (const target* const*, const small_vector<reference_wrapper<const string>, 2>&, lflags, bool)>&, - const function<void (const target&, const string&, bool, bool)>&, + const function<bool (const target&, const string&, bool, bool)>&, bool = false, library_cache* = nullptr, small_vector<const target*, 16>* = nullptr) const; |