diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-08-10 08:57:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-08-10 08:57:59 +0200 |
commit | 67db22fcae32c8a8014866ef2ee55b6c7733c3f9 (patch) | |
tree | c5f9cee0c2c7b94e02cbb8d5efe3ed91872ec8f9 /libbuild2/cc/compile-rule.hxx | |
parent | 388b94567f3136d1370b37610081c5465a74bdb7 (diff) |
Complete process_libraries() duplicate suppression work
Diffstat (limited to 'libbuild2/cc/compile-rule.hxx')
-rw-r--r-- | libbuild2/cc/compile-rule.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/cc/compile-rule.hxx b/libbuild2/cc/compile-rule.hxx index d085c8e..d65089e 100644 --- a/libbuild2/cc/compile-rule.hxx +++ b/libbuild2/cc/compile-rule.hxx @@ -54,7 +54,7 @@ namespace build2 perform_clean (action, const target&) const; public: - using appended_libraries = small_vector<const file*, 256>; + using appended_libraries = small_vector<const target*, 256>; void append_library_options (appended_libraries&, strings&, @@ -114,7 +114,7 @@ namespace build2 append_prefixes (prefix_map&, const target&, const variable&) const; void - append_library_prefixes (prefix_map&, + append_library_prefixes (appended_libraries&, prefix_map&, const scope&, action, target&, linfo) const; |