1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-29 21:50:58 +01:00

Fix resolveExprPath()

This commit is contained in:
Eelco Dolstra 2022-05-09 14:28:47 +02:00
parent 53869fbd42
commit e89d3e0edf
3 changed files with 10 additions and 5 deletions

View file

@ -92,6 +92,8 @@ struct SourcePath
{ return accessor.dumpPath(path, sink, filter); }
std::string to_string() const;
SourcePath append(std::string_view s) const;
};
std::ostream & operator << (std::ostream & str, const SourcePath & path);