зеркало из https://github.com/github/ruby.git
* complex.c (rb_complex_set_imag): Fix to properly set imag
of complex. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54896 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
03cbafcf23
Коммит
c949686d02
|
@ -1,3 +1,8 @@
|
|||
Tue May 3 22:55:07 2016 Yuichiro Kaneko <yui-knk@ruby-lang.org>
|
||||
|
||||
* complex.c (rb_complex_set_imag): Fix to properly set imag
|
||||
of complex.
|
||||
|
||||
Tue May 3 22:19:55 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* configure.in (warnflags): use -std=gnu99 instead of
|
||||
|
|
|
@ -1411,7 +1411,7 @@ rb_complex_set_real(VALUE cmp, VALUE r)
|
|||
VALUE
|
||||
rb_complex_set_imag(VALUE cmp, VALUE i)
|
||||
{
|
||||
RCOMPLEX_SET_REAL(cmp, i);
|
||||
RCOMPLEX_SET_IMAG(cmp, i);
|
||||
return cmp;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче