mirror of
https://github.com/NixOS/nix.git
synced 2025-11-15 15:02:42 +01:00
Take DerivationBuilder::pid private
This commit is contained in:
parent
4388e3dcb5
commit
c632c823ce
2 changed files with 5 additions and 5 deletions
|
|
@ -150,11 +150,6 @@ struct DerivationBuilderCallbacks
|
|||
*/
|
||||
struct DerivationBuilder : RestrictionContext
|
||||
{
|
||||
/**
|
||||
* The process ID of the builder.
|
||||
*/
|
||||
Pid pid;
|
||||
|
||||
DerivationBuilder() = default;
|
||||
virtual ~DerivationBuilder() = default;
|
||||
|
||||
|
|
|
|||
|
|
@ -70,6 +70,11 @@ class DerivationBuilderImpl : public DerivationBuilder, public DerivationBuilder
|
|||
{
|
||||
protected:
|
||||
|
||||
/**
|
||||
* The process ID of the builder.
|
||||
*/
|
||||
Pid pid;
|
||||
|
||||
LocalStore & store;
|
||||
|
||||
std::unique_ptr<DerivationBuilderCallbacks> miscMethods;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue