Fix a stale comment

This commit is contained in:
ridiculousfish 2018-11-11 16:08:45 -08:00
parent aa6be9bee4
commit efa9553dc1

View file

@ -294,8 +294,8 @@ extern bool is_login;
/// nesting level.
extern int is_event;
// 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;
// List of jobs.
using job_list_t = std::deque<shared_ptr<job_t>>;
bool job_list_is_empty(void);