[geos-commits] r3809 - trunk/include/geos/operation/buffer
svn_geos at osgeo.org
svn_geos at osgeo.org
Fri Jun 7 01:30:49 PDT 2013
Author: mloskot
Date: 2013-06-07 01:30:49 -0700 (Fri, 07 Jun 2013)
New Revision: 3809
Modified:
trunk/include/geos/operation/buffer/OffsetSegmentString.h
Log:
Correct return type of OffsetSegmentString::size() to be size_t
Modified: trunk/include/geos/operation/buffer/OffsetSegmentString.h
===================================================================
--- trunk/include/geos/operation/buffer/OffsetSegmentString.h 2013-06-06 20:18:50 UTC (rev 3808)
+++ trunk/include/geos/operation/buffer/OffsetSegmentString.h 2013-06-07 08:30:49 UTC (rev 3809)
@@ -171,7 +171,7 @@
return ret;
}
- inline int size() const { return ptList ? ptList->size() : 0 ; }
+ inline size_t size() const { return ptList ? ptList->size() : 0 ; }
};
More information about the geos-commits
mailing list