[goffice] math: use go_finitel as appropriate.
- From: Morten Welinder <mortenw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [goffice] math: use go_finitel as appropriate.
- Date: Wed, 28 Jul 2010 00:04:30 +0000 (UTC)
commit 4aa4173e31e3004280c800febc62754b64d3523a
Author: Morten Welinder <terra gnome org>
Date: Tue Jul 27 20:03:34 2010 -0400
math: use go_finitel as appropriate.
ChangeLog | 4 ++++
goffice/math/go-math.c | 12 ++++++------
2 files changed, 10 insertions(+), 6 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index fcb04b2..dfc855b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-07-27 Morten Welinder <terra gnome org>
+
+ * goffice/math/go-math.c: Use go_finitel as appropriate.
+
2010-07-13 Jean Brefort <jean brefort normalesup org>
* goffice/canvas/goc-graph.c (goc_graph_do_tooltip): don't access a
diff --git a/goffice/math/go-math.c b/goffice/math/go-math.c
index 291c0f7..b68942e 100644
--- a/goffice/math/go-math.c
+++ b/goffice/math/go-math.c
@@ -165,8 +165,8 @@ _go_math_init (void)
go_pinfl = go_pinf;
go_ninfl = go_ninf;
if (!(isnanl (go_nanl) &&
- go_pinfl > 0 && !finitel (go_pinfl) &&
- go_ninfl < 0 && !finitel (go_ninfl))) {
+ go_pinfl > 0 && !go_finitel (go_pinfl) &&
+ go_ninfl < 0 && !go_finitel (go_ninfl))) {
if (running_under_buggy_valgrind ()) {
g_warning ("Running under buggy valgrind, see http://bugs.kde.org/show_bug.cgi?id=164298");
} else {
@@ -700,11 +700,11 @@ go_fake_truncl (long double x)
long double
ldexpl (long double x, int exp)
{
- if (!finitel (x) || x == 0)
+ if (!go_finitel (x) || x == 0)
return x;
else {
long double res = x * go_pow2l (exp);
- if (finitel (res))
+ if (go_finitel (res))
return res;
else {
errno = ERANGE;
@@ -720,7 +720,7 @@ frexpl (long double x, int *exp)
{
long double l2x;
- if (!finitel (x) || x == 0) {
+ if (!go_finitel (x) || x == 0) {
*exp = 0;
return x;
}
@@ -797,7 +797,7 @@ modfl (long double x, long double *iptr)
{
if (isnanl (x))
return *iptr = x;
- else if (finitel (x)) {
+ else if (go_finitel (x)) {
if (x >= 0)
return x - (*iptr = floorl (x));
else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]