From 7ff0e7d0f7824a90a34fd5dc9a7d6a6123ffca9c Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Fri, 30 Dec 2022 13:35:33 -0800 Subject: [PATCH] Remove bogus job_chain_is_fully_constructed declaration This member function no longer exists. --- src/proc.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/proc.h b/src/proc.h index 3e09d6d14..63ec2ccd9 100644 --- a/src/proc.h +++ b/src/proc.h @@ -509,9 +509,6 @@ class job_t : noncopyable_t { /// \return whether we should post job_exit events. bool posts_job_exit_events() const; - /// \return whether this job and its parent chain are fully constructed. - bool job_chain_is_fully_constructed() const; - /// Run ourselves. Returning once we complete or stop. void continue_job(parser_t &parser);