mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-30 11:21:15 -03:00
Fix a stale comment
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user