mirror of
https://github.com/NixOS/nix
synced 2025-07-07 06:01:48 +02:00
Tree ctors
This commit is contained in:
parent
ff1320b850
commit
7680993506
1 changed files with 2 additions and 0 deletions
|
@ -16,6 +16,8 @@ struct Tree
|
||||||
{
|
{
|
||||||
Path actualPath;
|
Path actualPath;
|
||||||
StorePath storePath;
|
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;
|
struct InputScheme;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue