[geos-commits] r3362 - trunk/src/algorithm

svn_geos at osgeo.org svn_geos at osgeo.org
Fri May 13 11:53:16 EDT 2011


Author: mloskot
Date: 2011-05-13 08:53:16 -0700 (Fri, 13 May 2011)
New Revision: 3362

Modified:
   trunk/src/algorithm/RobustDeterminant.cpp
Log:
Removed std::isfinite as possibly non-existing on some platforms - rather fix platform.h if needed.

Modified: trunk/src/algorithm/RobustDeterminant.cpp
===================================================================
--- trunk/src/algorithm/RobustDeterminant.cpp	2011-05-12 10:11:13 UTC (rev 3361)
+++ trunk/src/algorithm/RobustDeterminant.cpp	2011-05-13 15:53:16 UTC (rev 3362)
@@ -43,8 +43,6 @@
 	double k;
 	long count=0;
 
-  using std::isfinite;
-
   // Protect against non-finite numbers
   if ( ISNAN(x1)   || ISNAN(y1)   || ISNAN(x2)   || ISNAN(y2) ||
        !FINITE(x1) || !FINITE(y1) || !FINITE(x2) || !FINITE(y2) )



More information about the geos-commits mailing list