mirror of
https://github.com/NixOS/nix.git
synced 2025-11-15 23:12:44 +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
|
struct DerivationBuilder : RestrictionContext
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
* The process ID of the builder.
|
|
||||||
*/
|
|
||||||
Pid pid;
|
|
||||||
|
|
||||||
DerivationBuilder() = default;
|
DerivationBuilder() = default;
|
||||||
virtual ~DerivationBuilder() = default;
|
virtual ~DerivationBuilder() = default;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,11 @@ class DerivationBuilderImpl : public DerivationBuilder, public DerivationBuilder
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The process ID of the builder.
|
||||||
|
*/
|
||||||
|
Pid pid;
|
||||||
|
|
||||||
LocalStore & store;
|
LocalStore & store;
|
||||||
|
|
||||||
std::unique_ptr<DerivationBuilderCallbacks> miscMethods;
|
std::unique_ptr<DerivationBuilderCallbacks> miscMethods;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue