Remove unused variable

This commit is contained in:
Eelco Dolstra 2015-09-02 14:46:04 +02:00
parent ce97523a7c
commit d711fe8f5e

View file

@ -766,9 +766,6 @@ private:
/* RAII object to delete the chroot directory. */ /* RAII object to delete the chroot directory. */
std::shared_ptr<AutoDelete> autoDelChroot; std::shared_ptr<AutoDelete> autoDelChroot;
/* All inputs that are regular files. */
PathSet regularInputPaths;
/* Whether this is a fixed-output derivation. */ /* Whether this is a fixed-output derivation. */
bool fixedOutput; bool fixedOutput;
@ -1998,8 +1995,6 @@ void DerivationGoal::startBuilder()
StringSource source(sink.s); StringSource source(sink.s);
restorePath(p, source); restorePath(p, source);
} }
regularInputPaths.insert(i);
} }
} }