Revert "Fix a stale comment"

This reverts commit efa9553dc1.

The comment was not stale.
This commit is contained in:
ridiculousfish 2018-11-11 16:56:49 -08:00
parent efa9553dc1
commit 6f46eaaeeb

View file

@ -294,8 +294,8 @@ extern bool is_login;
/// nesting level.
extern int is_event;
// List of jobs.
using job_list_t = std::deque<shared_ptr<job_t>>;
// List of jobs. We sometimes mutate this while iterating - hence it must be a list, not a vector
typedef std::deque<shared_ptr<job_t>> job_list_t;
bool job_list_is_empty(void);