diff options
-rw-r--r-- | src/libstore/build/worker.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstore/build/worker.hh b/src/libstore/build/worker.hh index a741b2672..e21e91385 100644 --- a/src/libstore/build/worker.hh +++ b/src/libstore/build/worker.hh @@ -153,6 +153,11 @@ private: */ void waitForInput(); + /** + * Remove a dead goal. + */ + void removeGoal(GoalPtr goal); + public: const Activity act; @@ -225,11 +230,6 @@ public: GoalPtr makeGoal(const DerivedPath & req, BuildMode buildMode = bmNormal); /** - * Remove a dead goal. - */ - void removeGoal(GoalPtr goal); - - /** * Return the number of local build processes currently running (but not * remote builds via the build hook). */ |