From: rwst Date: Mon, 22 May 2006 18:36:39 +0000 (+0000) Subject: fix problems with gcc4 (by joncruz) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5f7225851cae231465f53318b91b4986ede1c7b4;p=inkscape.git fix problems with gcc4 (by joncruz) --- diff --git a/src/mod360-test.h b/src/mod360-test.h index 3f276b24e..55ed59f32 100644 --- a/src/mod360-test.h +++ b/src/mod360-test.h @@ -12,8 +12,8 @@ class Mod360Test : public CxxTest::TestSuite { public: - static double const inf = 1e400; - static double const nan = inf - inf; + static double const inf() { return INFINITY; } + static double nan() { return ((double)INFINITY) - ((double)INFINITY); } void testMod360() { @@ -26,9 +26,9 @@ public: {-359, 1}, {-360, -0}, {-361, 359}, - {inf, 0}, - {-inf, 0}, - {nan, 0}, + {inf(), 0}, + {-inf(), 0}, + {nan(), 0}, {720, 0}, {-721, 359}, {-1000, 80}