From d711fe8f5ea240a27fcfb4fba908cfcdb432f079 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Sep 2015 14:46:04 +0200 Subject: [PATCH] Remove unused variable --- src/libstore/build.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 2e3a22218..0b0064704 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -766,9 +766,6 @@ private: /* RAII object to delete the chroot directory. */ std::shared_ptr autoDelChroot; - /* All inputs that are regular files. */ - PathSet regularInputPaths; - /* Whether this is a fixed-output derivation. */ bool fixedOutput; @@ -1998,8 +1995,6 @@ void DerivationGoal::startBuilder() StringSource source(sink.s); restorePath(p, source); } - - regularInputPaths.insert(i); } }