[geos-commits] r2794 - trunk/source/io

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Dec 4 10:20:38 EST 2009


Author: mloskot
Date: 2009-12-04 10:20:38 -0500 (Fri, 04 Dec 2009)
New Revision: 2794

Modified:
   trunk/source/io/WKBReader.cpp
Log:
Replaced long with std::streampos

Modified: trunk/source/io/WKBReader.cpp
===================================================================
--- trunk/source/io/WKBReader.cpp	2009-12-04 15:07:37 UTC (rev 2793)
+++ trunk/source/io/WKBReader.cpp	2009-12-04 15:20:38 UTC (rev 2794)
@@ -57,7 +57,7 @@
 {
 	static const char hex[] = "0123456789ABCDEF";
 
-	long pos = is.tellg(); // take note of input stream get pointer
+    std::streampos pos = is.tellg(); // take note of input stream get pointer
 	is.seekg(0, ios::beg); // rewind input stream
 
 	char each=0;



More information about the geos-commits mailing list