mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bignum.c (rb_big_2comp): void function cannot return any value.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2140 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8d456d453c
commit
210ebe1acf
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Feb 26 21:34:07 2002 Usaku Nakamura <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* bignum.c (rb_big_2comp): void function cannot return any value.
|
||||||
|
|
||||||
Tue Feb 26 15:41:30 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Feb 26 15:41:30 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c (rb_eval): call trace_func for if/while conditions.
|
* eval.c (rb_eval): call trace_func for if/while conditions.
|
||||||
|
|
2
bignum.c
2
bignum.c
|
@ -101,7 +101,7 @@ void
|
||||||
rb_big_2comp(x) /* get 2's complement */
|
rb_big_2comp(x) /* get 2's complement */
|
||||||
VALUE x;
|
VALUE x;
|
||||||
{
|
{
|
||||||
return get2comp(x, Qtrue);
|
get2comp(x, Qtrue);
|
||||||
}
|
}
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue