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:
Mahmoud Al-Qudsi 2018-06-18 00:05:31 -05:00
parent dcced5f1bc
commit 27cd74e16c

View file

@ -195,7 +195,7 @@ struct alternative {};
return detail::type_possible<Desired, Index, __VA_ARGS__>(); \ return detail::type_possible<Desired, Index, __VA_ARGS__>(); \
} \ } \
static const production_element_t *resolve(const parse_token_t &, const parse_token_t &, \ 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 // A job_list is a list of job_conjunctions, separated by semicolons or newlines
DEF_ALT(job_list) { DEF_ALT(job_list) {