mirror of
https://github.com/NixOS/nix
synced 2025-07-03 18:41:47 +02:00
nix-util: Use small_vector in concatMapStringsSep
(cherry picked from commit 32898dc46a
)
This commit is contained in:
parent
f9d1f36169
commit
aa7433982b
2 changed files with 5 additions and 1 deletions
|
@ -37,6 +37,7 @@ basicSplitString(std::basic_string_view<OsChar> s, std::basic_string_view<OsChar
|
|||
template std::string concatStringsSep(std::string_view, const std::list<std::string> &);
|
||||
template std::string concatStringsSep(std::string_view, const std::set<std::string> &);
|
||||
template std::string concatStringsSep(std::string_view, const std::vector<std::string> &);
|
||||
template std::string concatStringsSep(std::string_view, const boost::container::small_vector<std::string, 64> &);
|
||||
|
||||
typedef std::string_view strings_2[2];
|
||||
template std::string concatStringsSep(std::string_view, const strings_2 &);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue