X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fmod360-test.h;h=55ed59f32899ec03bb68392645af15bb36af392d;hb=6d2cc960e9ee6f4c6b649049951b32f750786a6d;hp=3f276b24ee096c9b2922ec00f75a1600af095fdf;hpb=b27b41748a314f1217ac0aab88feb52604257fd7;p=inkscape.git 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}