forked from lix-project/lix
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 a new issue