diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-01 08:27:17 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-01 08:27:17 +0000 |
| commit | 28a171c1555b2d39df7a1b751ee29e19d3c1344e (patch) | |
| tree | aa4ff5a6e2e80bec2c8153fdcee325d7934ee11d | |
| parent | b80a6d94fa173fc0c0cc5655068be1f49bee6b95 (diff) | |
| download | ruby-28a171c1555b2d39df7a1b751ee29e19d3c1344e.tar.gz ruby-28a171c1555b2d39df7a1b751ee29e19d3c1344e.tar.xz ruby-28a171c1555b2d39df7a1b751ee29e19d3c1344e.zip | |
* ext/bigdecimal/bigdecimal.c (gfDebug): uncommented out.
[ruby-core:22600]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ext/bigdecimal/bigdecimal.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sun Mar 1 17:27:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/bigdecimal/bigdecimal.c (gfDebug): uncommented out. + [ruby-core:22600] + Sun Mar 1 16:15:31 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * process.c (rb_waitpid): use wait_each() on no waitpid platforms. diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index b25f8e431..0abc00ab6 100644 --- a/ext/bigdecimal/bigdecimal.c +++ b/ext/bigdecimal/bigdecimal.c @@ -2046,7 +2046,7 @@ Init_bigdecimal(void) * */ #ifdef _DEBUG -/*static int gfDebug = 1;*/ /* Debug switch */ +static int gfDebug = 1; /* Debug switch */ static int gfCheckVal = 1; /* Value checking flag in VpNmlz() */ #endif /* _DEBUG */ |
