1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fixed conditional expressions with only one void side

This commit is contained in:
Nobuyoshi Nakada 2019-11-05 01:32:26 +09:00
parent bd3463ee35
commit a087e027bf
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -955,7 +955,7 @@ static void token_info_warn(struct parser_params *p, const char *token, token_in
#define WARN_EOL(tok) \
(looking_at_eol_p(p) ? \
rb_warning0("`" tok "' at the end of line without an expression") : \
(void)rb_warning0("`" tok "' at the end of line without an expression") : \
(void)0)
static int looking_at_eol_p(struct parser_params *p);
%}