diff options
Diffstat (limited to 'third_party/nix/src/libutil/util.hh')
-rw-r--r-- | third_party/nix/src/libutil/util.hh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/third_party/nix/src/libutil/util.hh b/third_party/nix/src/libutil/util.hh index 51d9979e1655..27e6b47fb26b 100644 --- a/third_party/nix/src/libutil/util.hh +++ b/third_party/nix/src/libutil/util.hh @@ -56,7 +56,7 @@ Path canonPath(const Path& path, bool resolveSymlinks = false); everything before the final `/'. If the path is the root or an immediate child thereof (e.g., `/foo'), this means an empty string is returned. */ -Path dirOf(const Path& path); +Path dirOf(absl::string_view path); /* Return the base name of the given canonical path, i.e., everything following the final `/'. */ @@ -316,11 +316,6 @@ MakeError(Interrupted, BaseError); MakeError(FormatError, Error); -/* String tokenizer. */ -template <class C> -C tokenizeString(const std::string& s, - const std::string& separators = " \t\n\r"); - /* Concatenate the given strings with a separator between the elements. */ std::string concatStringsSep(const std::string& sep, const Strings& ss); |