Tree ctors

This commit is contained in:
Matthew Kenigsberg 2020-06-01 09:01:37 -06:00
parent ff1320b850
commit 7680993506

View file

@ -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;