зеркало из https://github.com/github/ruby.git
Remove redundant cast
ptr is already of the VALUE type, so we don't need to cast it.
This commit is contained in:
Родитель
ca81f5a5de
Коммит
f2369de2a4
4
gc.c
4
gc.c
|
@ -4477,8 +4477,8 @@ id2ref(VALUE objid)
|
|||
if (ptr == Qtrue) return Qtrue;
|
||||
if (ptr == Qfalse) return Qfalse;
|
||||
if (NIL_P(ptr)) return Qnil;
|
||||
if (FIXNUM_P(ptr)) return (VALUE)ptr;
|
||||
if (FLONUM_P(ptr)) return (VALUE)ptr;
|
||||
if (FIXNUM_P(ptr)) return ptr;
|
||||
if (FLONUM_P(ptr)) return ptr;
|
||||
|
||||
ptr = obj_id_to_ref(objid);
|
||||
if ((ptr % sizeof(RVALUE)) == (4 << 2)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче