зеркало из https://github.com/github/ruby.git
[ruby/io-console] Get rid of address of an rvalue on TruffleRuby
https://github.com/ruby/io-console/commit/653c1cd33f
This commit is contained in:
Родитель
818ba30ee9
Коммит
412defc7ad
|
@ -1564,7 +1564,8 @@ static VALUE
|
|||
str_chomp(VALUE str)
|
||||
{
|
||||
if (!NIL_P(str)) {
|
||||
rb_funcallv(str, id_chomp_bang, 1, &rb_default_rs);
|
||||
const VALUE rs = rb_default_rs; /* rvalue in TruffleRuby */
|
||||
rb_funcallv(str, id_chomp_bang, 1, &rs);
|
||||
}
|
||||
return str;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче