patch-xpcom_ds_nsMathUtils_h 395 B

1234567891011
  1. --- mozilla-release.orig/xpcom/ds/nsMathUtils.h 2011-07-08 03:15:44.000000000 +0200
  2. +++ mozilla-release/xpcom/ds/nsMathUtils.h 2011-08-01 14:40:58.343424403 +0200
  3. @@ -170,7 +170,7 @@ inline NS_HIDDEN_(bool) NS_finite(double
  4. // NOTE: '!!' casts an int to bool without spamming MSVC warning C4800.
  5. return !!_finite(d);
  6. #else
  7. - return finite(d);
  8. + return isfinite(d);
  9. #endif
  10. }