Skip to content

Commit

Permalink
* missing/tgamma.c (tgamma): remove unused variable.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17823 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
mame committed Jul 2, 2008
1 parent b892e3d commit ac6fd93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Thu Jul 3 01:01:57 2008 Yusuke Endoh <[email protected]>

* missing/tgamma.c (tgamma): remove unused variable.

Thu Jul 3 00:18:00 2008 Masaki Suketa <[email protected]>

* ext/win32ole/win32ole.c: avoid creating Ruby object during
Expand Down
1 change: 0 additions & 1 deletion missing/tgamma.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ double tgamma(double x)
return 1/x < 0 ? -HUGE_VAL : HUGE_VAL;
}
if (x < 0) {
int sign;
static double zero = 0.0;
double i, f;
f = modf(-x, &i);
Expand Down

0 comments on commit ac6fd93

Please sign in to comment.