]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/math.h
Late note about deprecated wxDbTable constructor.
[wxWidgets.git] / include / wx / math.h
index c83b67642a50daa644ca8fd81d1318f12d069b85..93841cf6ed7bd686c900473f06f0952b1a7e991b 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      John Labenski and others
 // Modified by:
 // Created:     02/02/03
-// RCS-ID:      
+// RCS-ID:
 // Copyright:   (c)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -12,7 +12,7 @@
 #ifndef _WX_MATH_H_
 #define _WX_MATH_H_
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "math.h"
 #endif
 
@@ -25,7 +25,7 @@
     #define wxFinite(x) _finite(x)
 #elif defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \
       defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \
-         defined(__HPUX__)||defined(__MWERKS__)
+      defined(__HPUX__)||defined(__MWERKS__)
     #define wxFinite(x) finite(x)
 #else
     #define wxFinite(x) ((x) == (x))
@@ -36,8 +36,8 @@
     #define wxIsNaN(x) _isnan(x)
 #elif defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \
       defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \
-         defined(__HPUX__)||defined(__MWERKS__)
-       #define wxIsNaN(x) isnan(x)
+      defined(__HPUX__)||defined(__MWERKS__)
+    #define wxIsNaN(x) isnan(x)
 #else
     #define wxIsNaN(x) ((x) != (x))
 #endif