path_util: copy output for GetParentPath

This commit is contained in:
Liam 2023-12-17 14:25:42 -05:00
parent e357896674
commit 09e8fb75ce
2 changed files with 4 additions and 4 deletions

View file

@ -302,7 +302,7 @@ enum class DirectorySeparator {
DirectorySeparator directory_separator = DirectorySeparator::ForwardSlash);
// Gets all of the text up to the last '/' or '\' in the path.
[[nodiscard]] std::string_view GetParentPath(std::string_view path);
[[nodiscard]] std::string GetParentPath(std::string_view path);
// Gets all of the text after the first '/' or '\' in the path.
[[nodiscard]] std::string_view GetPathWithoutTop(std::string_view path);