diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-14 22:25:25 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-14 22:25:25 +0000 |
| commit | da6ba3284024ec8df6d270892a969fbae927aa6a (patch) | |
| tree | a34d1efb5c0035ba063794876740a6f98f66c2b2 | |
| parent | 766cac421d7f53c7aef7bfdd35ca20994e05c309 (diff) | |
| download | ruby-da6ba3284024ec8df6d270892a969fbae927aa6a.tar.gz ruby-da6ba3284024ec8df6d270892a969fbae927aa6a.tar.xz ruby-da6ba3284024ec8df6d270892a969fbae927aa6a.zip | |
* object.c (rb_to_integer): argument constified.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | object.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon Aug 15 07:24:38 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * object.c (rb_to_integer): argument constified. + Mon Aug 15 00:38:51 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * eval.c (rb_rescue2): reduce PUSH_TAG() as well as NODE_RESCUE. @@ -2165,7 +2165,7 @@ rb_check_convert_type(val, type, tname, method) static VALUE rb_to_integer(val, method) VALUE val; - char *method; + const char *method; { VALUE v = convert_type(val, "Integer", method, Qtrue); if (!rb_obj_is_kind_of(v, rb_cInteger)) { |
