mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Fix warning about extra ';' being ignored
It is both present at the end of the #define and explicitly included after the define is called in the main code, leading to an expansion of `;;`.
This commit is contained in:
parent
dcced5f1bc
commit
27cd74e16c
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ struct alternative {};
|
|||
return detail::type_possible<Desired, Index, __VA_ARGS__>(); \
|
||||
} \
|
||||
static const production_element_t *resolve(const parse_token_t &, const parse_token_t &, \
|
||||
parse_node_tag_t *);
|
||||
parse_node_tag_t *)
|
||||
|
||||
// A job_list is a list of job_conjunctions, separated by semicolons or newlines
|
||||
DEF_ALT(job_list) {
|
||||
|
|
Loading…
Reference in a new issue