mirror of
https://github.com/NixOS/nix
synced 2025-06-25 02:21:16 +02:00
fix(libstore): make BasicDerivation move-constructible/assignable
This commit is contained in:
parent
8dd787fbf6
commit
149802b9f5
1 changed files with 4 additions and 0 deletions
|
@ -298,6 +298,10 @@ struct BasicDerivation
|
|||
std::string name;
|
||||
|
||||
BasicDerivation() = default;
|
||||
BasicDerivation(BasicDerivation &&) = default;
|
||||
BasicDerivation(const BasicDerivation &) = default;
|
||||
BasicDerivation& operator=(BasicDerivation &&) = default;
|
||||
BasicDerivation& operator=(const BasicDerivation &) = default;
|
||||
virtual ~BasicDerivation() { };
|
||||
|
||||
bool isBuiltin() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue