aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/build/goal.hh
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-09-25 23:57:46 +0200
committereldritch horrors <pennae@lix.systems>2024-09-29 15:29:56 +0000
commitaa33c34c9be074c9452976aa96d71091325c83ea (patch)
treef27c04e2cf373c3e4a5201d68b18d9f86b29e95c /src/libstore/build/goal.hh
parentccd28626663d0024f04c31f121586f951b2283ab (diff)
libstore: merge ContinueImmediately and StillAlive
nothing needs to signal being still active but not actively pollable, only that immediate polling for the next goal work phase is in order. Change-Id: Ia43c1015e94ba4f5f6b9cb92943da608c4a01555
Diffstat (limited to 'src/libstore/build/goal.hh')
-rw-r--r--src/libstore/build/goal.hh2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstore/build/goal.hh b/src/libstore/build/goal.hh
index 4436e44b1..17c3d85db 100644
--- a/src/libstore/build/goal.hh
+++ b/src/libstore/build/goal.hh
@@ -103,7 +103,6 @@ public:
struct Finished;
struct [[nodiscard]] StillAlive {};
- struct [[nodiscard]] ContinueImmediately {};
struct [[nodiscard]] Finished {
ExitCode exitCode;
BuildResult result;
@@ -116,7 +115,6 @@ public:
struct [[nodiscard]] WorkResult : std::variant<
StillAlive,
- ContinueImmediately,
Finished>
{
WorkResult() = delete;