]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/real.hh
patch::: 1.3.144.jcn6
[lilypond.git] / flower / include / real.hh
index ec98982cdfca77fa38fceaa8eecb0122b252fc7d..58d3f95365cc4f097153d832462ecb28289946df 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the Flower Library
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #define REAL_HH
 
 
-#include <math.h>
 #include <limits.h>
 
 typedef double Real;
-const Real infinity_f = HUGE_VAL;
+extern const Real infinity_f;
 
 template<class T> inline T abs (T x)
 {
@@ -25,7 +24,7 @@ template<class T> inline T abs (T x)
 template<class T> inline int sign (T x)
 {
   if (x)
-    return x > 0 ? 1 : -1;
+    return x > T (0) ? 1 : -1;
   return 0;
 }