mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
Revert "Fix a stale comment"
This reverts commit efa9553dc1
.
The comment was not stale.
This commit is contained in:
parent
efa9553dc1
commit
6f46eaaeeb
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue