mirror of
https://github.com/NixOS/nix.git
synced 2025-12-16 14:01:05 +01:00
12 lines
346 B
C++
12 lines
346 B
C++
#include <string>
|
|
|
|
#include "strings-inline.hh"
|
|
#include "util.hh"
|
|
|
|
namespace nix {
|
|
|
|
template std::string concatStringsSep(std::string_view, const Strings &);
|
|
template std::string concatStringsSep(std::string_view, const StringSet &);
|
|
template std::string concatStringsSep(std::string_view, const std::vector<std::string> &);
|
|
|
|
} // namespace nix
|