mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* parse.y (NO_QCALL): fix type mismatch of operands that causes
compile error with Oracle Solaris Studio on Solaris. [Bug #11645] [ruby-dev:49327] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e802ec51fd
commit
71c972c05b
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Tue Nov 3 01:58:46 2015 Naohisa Goto <ngotogenome@gmail.com>
|
||||
|
||||
* parse.y (NO_QCALL): fix type mismatch of operands that causes
|
||||
compile error with Oracle Solaris Studio on Solaris.
|
||||
[Bug #11645] [ruby-dev:49327]
|
||||
|
||||
Mon Nov 2 20:07:10 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (lbracket): support .? before aref. [Feature #11537]
|
||||
|
|
2
parse.y
2
parse.y
|
@ -375,7 +375,7 @@ static int parser_yyerror(struct parser_params*, const char*);
|
|||
#define NEW_QCALL(q,r,m,a) NEW_NODE(NODE_CALL_Q(q),r,m,a)
|
||||
#define NO_QCALL(q, here) \
|
||||
((q) != tDOTQ ? (void)0 : \
|
||||
yyerror(".? in "here" is not supported yet"))
|
||||
(void)yyerror(".? in "here" is not supported yet"))
|
||||
|
||||
static int yylex(YYSTYPE*, struct parser_params*);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue