mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-19 01:26:47 +02:00
libstore/worker.cc: Remove outdated comment
It was added above this conditional
Worker::Worker(LocalStore & store)
: store(store)
{
/* Debugging: prevent recursive workers. */
if (working) abort();
working = true;
However, `working` has since been removed.
Source: 7f8e805c8e/src/libstore/build.cc (L2617)
This commit is contained in:
parent
052f1320dd
commit
fd0b376c79
1 changed files with 0 additions and 1 deletions
|
@ -19,7 +19,6 @@ Worker::Worker(Store & store, Store & evalStore)
|
|||
, store(store)
|
||||
, evalStore(evalStore)
|
||||
{
|
||||
/* Debugging: prevent recursive workers. */
|
||||
nrLocalBuilds = 0;
|
||||
nrSubstitutions = 0;
|
||||
lastWokenUp = steady_time_point::min();
|
||||
|
|
Loading…
Reference in a new issue