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

* class.c (clone_const): need to return value. fix r29602.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29606 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2010-10-27 03:06:27 +00:00
parent 6ef1aa7964
commit 6223582f2a
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Wed Oct 27 12:05:40 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* class.c (clone_const): need to return value. fix r29602.
Wed Oct 27 11:58:58 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* include/ruby/ruby.h (NUM2LONG_internal): add cast to get rid of a

View file

@ -147,6 +147,7 @@ clone_const(ID key, const rb_const_entry_t *ce, st_table *tbl)
rb_const_entry_t *nce = ALLOC(rb_const_entry_t);
*nce = *ce;
st_insert(tbl, key, (st_data_t)nce);
return ST_CONTINUE;
}
/* :nodoc: */