diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-01 17:35:30 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-01 17:35:30 +0000 |
commit | d17fe8a46722912e9904982f89b3949b41acc68f (patch) | |
tree | 1949295cbd6126ba568c8b55b5dffb4575499a1a /ext | |
parent | d99ac4f829dd0903f20e02de5dbba0ddc175c1f3 (diff) | |
download | ruby-d17fe8a46722912e9904982f89b3949b41acc68f.tar.gz |
NaN is now 0.0/0 because of 1.8/1.9 compat.
* ext/json/lib/json/common.rb (NaN): Change definition
of NaN to 0.0/0 for 1.8/1.9 compatibility.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/json/lib/json/common.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/lib/json/common.rb b/ext/json/lib/json/common.rb index 5f6b244779..0df8a8995e 100755 --- a/ext/json/lib/json/common.rb +++ b/ext/json/lib/json/common.rb @@ -74,7 +74,7 @@ module JSON end self.create_id = 'json_class' - NaN = (-1.0) ** 0.5 + NaN = 0.0/0 Infinity = 1.0/0 |