[geos-commits] r4143 - in branches/3.5: . src/io

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Feb 5 00:00:41 PST 2016


Author: strk
Date: 2016-02-05 00:00:40 -0800 (Fri, 05 Feb 2016)
New Revision: 4143

Modified:
   branches/3.5/NEWS
   branches/3.5/src/io/StringTokenizer.cpp
Log:
Include <limits> in StringTokenizer

Patch by Jeff Mckenna
Closes #766

Modified: branches/3.5/NEWS
===================================================================
--- branches/3.5/NEWS	2016-02-05 07:59:36 UTC (rev 4142)
+++ branches/3.5/NEWS	2016-02-05 08:00:40 UTC (rev 4143)
@@ -7,6 +7,7 @@
   - Fix GeometryEditor to correctly update factory of empty geometries (#749)
   - Fix snapping of last segment of a closed linestring (#758)
   - Fix memory exhaustion case in isvalid (#757)
+  - Fix Windows build with Visual Studio 2008 (#766)
 
 Changes in 3.5.0
 2015-08-15

Modified: branches/3.5/src/io/StringTokenizer.cpp
===================================================================
--- branches/3.5/src/io/StringTokenizer.cpp	2016-02-05 07:59:36 UTC (rev 4142)
+++ branches/3.5/src/io/StringTokenizer.cpp	2016-02-05 08:00:40 UTC (rev 4143)
@@ -21,6 +21,7 @@
 
 #include <string>
 #include <cstdlib>
+#include <limits>
 
 using namespace std;
 



More information about the geos-commits mailing list