mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Merge pull request #7503 from edolstra/fix-dirOf
Fix CanonPath::dirOf() returning a string_view of a temporary
This commit is contained in:
commit
14f7dae3e4
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ public:
|
||||||
std::optional<std::string_view> dirOf() const
|
std::optional<std::string_view> dirOf() const
|
||||||
{
|
{
|
||||||
if (isRoot()) return std::nullopt;
|
if (isRoot()) return std::nullopt;
|
||||||
return path.substr(0, path.rfind('/'));
|
return ((std::string_view) path).substr(0, path.rfind('/'));
|
||||||
}
|
}
|
||||||
|
|
||||||
std::optional<std::string_view> baseName() const
|
std::optional<std::string_view> baseName() const
|
||||||
|
|
Loading…
Reference in a new issue