[geos-commits] r2764 - trunk/source/algorithm

svn_geos at osgeo.org svn_geos at osgeo.org
Thu Dec 3 14:03:04 EST 2009


Author: mloskot
Date: 2009-12-03 14:03:04 -0500 (Thu, 03 Dec 2009)
New Revision: 2764

Modified:
   trunk/source/algorithm/RobustDeterminant.cpp
Log:
Part 4 of larger changeset - source/algorithm:
* Declare noncopyable types as such explicitly (Ticket #304).
* Added Visual C++ pragmas.
* Tidy up.

Modified: trunk/source/algorithm/RobustDeterminant.cpp
===================================================================
--- trunk/source/algorithm/RobustDeterminant.cpp	2009-12-03 19:02:17 UTC (rev 2763)
+++ trunk/source/algorithm/RobustDeterminant.cpp	2009-12-03 19:03:04 UTC (rev 2764)
@@ -23,6 +23,10 @@
 
 #include <cmath>
 
+#ifdef _MSC_VER
+#pragma warning(disable : 4127)
+#endif
+
 namespace geos {
 namespace algorithm { // geos.algorithm
 



More information about the geos-commits mailing list