diff options
| author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-21 06:28:41 +0000 |
|---|---|---|
| committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-21 06:28:41 +0000 |
| commit | fb3bd70a0c39a3c8287958cbf2c4cd6d05805be5 (patch) | |
| tree | c1062a7705ae74de45a4751cf33c80ec1a58b75c /ChangeLog | |
| parent | 8159660e68af73ef644a3262a2af002308d63f5c (diff) | |
| download | ruby-fb3bd70a0c39a3c8287958cbf2c4cd6d05805be5.tar.gz ruby-fb3bd70a0c39a3c8287958cbf2c4cd6d05805be5.tar.xz ruby-fb3bd70a0c39a3c8287958cbf2c4cd6d05805be5.zip | |
* bignum.c (bignew_1): convertion from `int' to `char' discards
upper bits, (ie. (char)0xff00 -> 0) so it's better to test if
nonzero and set 0 or 1 instead of simply casting ... as a flag usage.
(but I believe this won't cause actual bug in current implementation)
[ruby-dev:27055]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,11 @@ +Fri Oct 21 15:23:23 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * bignum.c (bignew_1): convertion from `int' to `char' discards + upper bits, (ie. (char)0xff00 -> 0) so it's better to test if + nonzero and set 0 or 1 instead of simply casting ... as a flag usage. + (but I believe this won't cause actual bug in current implementation) + [ruby-dev:27055] + Thu Oct 20 22:22:49 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * parser.y (struct parser_params): parser never modify input string. |
