mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ext/bigdecimal/bigdecimal.c: drop unused function
This has been unused since r66124. cc: @mrkn git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66167 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
888cdf605c
commit
5ceeea4da1
1 changed files with 4 additions and 10 deletions
|
@ -3687,19 +3687,13 @@ VpSetRoundMode(unsigned short n)
|
|||
|
||||
/*
|
||||
* 0.0 & 1.0 generator
|
||||
* These gZero_..... and gOne_..... can be any name
|
||||
* referenced from nowhere except Zero() and One().
|
||||
* gZero_..... and gOne_..... must have global scope
|
||||
* These gOne_..... can be any name
|
||||
* referenced from nowhere except One().
|
||||
* gOne_..... must have global scope
|
||||
* (to let the compiler know they may be changed in outside
|
||||
* (... but not actually..)).
|
||||
*/
|
||||
volatile const double gZero_ABCED9B1_CE73__00400511F31D = 0.0;
|
||||
volatile const double gOne_ABCED9B4_CE73__00400511F31D = 1.0;
|
||||
static double
|
||||
Zero(void)
|
||||
{
|
||||
return gZero_ABCED9B1_CE73__00400511F31D;
|
||||
}
|
||||
volatile const double gOne_ABCED9B4_CE73__00400511F31D = 1.0;
|
||||
|
||||
static double
|
||||
One(void)
|
||||
|
|
Loading…
Reference in a new issue