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

* ext/bigdecimal/bigdecimal.c (is_kind_of_BigDecimal): new function to

examine the whether the object is kind of BigDecimal.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mrkn 2011-06-13 09:51:52 +00:00
parent 3bd8b390de
commit 5112c6d1d9
2 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Mon Jun 13 18:52:00 2011 Kenta Murata <mrkn@mrkn.jp>
* ext/bigdecimal/bigdecimal.c (is_kind_of_BigDecimal): new function to
examine the whether the object is kind of BigDecimal.
Mon Jun 13 18:49:00 2011 Kenta Murata <mrkn@mrkn.jp>
* ext/bigdecimal/bigdecimal.c (BigDecimalCmp): use GetVpValueWithPrec

View file

@ -119,6 +119,12 @@ static const rb_data_type_t BigDecimal_data_type = {
{0, BigDecimal_delete, BigDecimal_memsize,},
};
static inline int
is_kind_of_BigDecimal(VALUE const v)
{
return rb_typeddata_is_kind_of(v, &BigDecimal_data_type);
}
static VALUE
ToValue(Real *p)
{
@ -168,7 +174,7 @@ again:
goto SomeOneMayDoIt;
case T_DATA:
if (rb_typeddata_is_kind_of(v, &BigDecimal_data_type)) {
if (is_kind_of_BigDecimal(v)) {
pv = DATA_PTR(v);
return pv;
}
@ -798,7 +804,7 @@ BigDecimalCmp(VALUE self, VALUE r,char op)
GUARD_OBJ(a,GetVpValue(self,1));
switch (TYPE(r)) {
case T_DATA:
if (!rb_typeddata_is_kind_of(r, &BigDecimal_data_type)) break;
if (!is_kind_of_BigDecimal(r)) break;
/* fall through */
case T_FIXNUM:
/* fall through */