mirror of
https://github.com/NixOS/nix.git
synced 2024-11-25 16:23:02 +00:00
Tree ctors
This commit is contained in:
parent
ff1320b850
commit
7680993506
@ -16,6 +16,8 @@ struct Tree
|
||||
{
|
||||
Path actualPath;
|
||||
StorePath storePath;
|
||||
Tree(Path && actualPath, StorePath && storePath) : actualPath(actualPath), storePath(std::move(storePath)) {}
|
||||
Tree (const Tree & rhs) : actualPath(rhs.actualPath), storePath(rhs.storePath.clone()) {}
|
||||
};
|
||||
|
||||
struct InputScheme;
|
||||
|
Loading…
Reference in New Issue
Block a user