aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/build/goal.hh
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-10-05 00:38:35 +0200
committereldritch horrors <pennae@lix.systems>2024-10-05 21:19:51 +0000
commit03cbc0ecb9402fe7bbe1a2acd4643995003d7bb2 (patch)
tree47cfc9bcbe1444a93fb6563e350fb7ac8dd85ed7 /src/libstore/build/goal.hh
parent1caf2afb1d1fffe0ff54244d335c168f4c32cbdf (diff)
libstore: move Goal::ex to WorkResult
yet another duplicated field. it's the last one though. Change-Id: I352df8d306794d262d8c9066f3be78acd40e82cf
Diffstat (limited to 'src/libstore/build/goal.hh')
-rw-r--r--src/libstore/build/goal.hh6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libstore/build/goal.hh b/src/libstore/build/goal.hh
index bceea3c54..b524d3118 100644
--- a/src/libstore/build/goal.hh
+++ b/src/libstore/build/goal.hh
@@ -118,12 +118,6 @@ protected:
virtual kj::Promise<Result<WorkResult>> workImpl() noexcept = 0;
public:
-
- /**
- * Exception containing an error message, if any.
- */
- std::shared_ptr<Error> ex;
-
explicit Goal(Worker & worker, bool isDependency)
: worker(worker)
, isDependency(isDependency)