[geos-commits] r2931 - trunk/src/geom
svn_geos at osgeo.org
svn_geos at osgeo.org
Sun Feb 28 14:01:20 EST 2010
Author: strk
Date: 2010-02-28 14:01:20 -0500 (Sun, 28 Feb 2010)
New Revision: 2931
Modified:
trunk/src/geom/LineString.cpp
Log:
Minor tweak
Modified: trunk/src/geom/LineString.cpp
===================================================================
--- trunk/src/geom/LineString.cpp 2010-02-28 18:55:44 UTC (rev 2930)
+++ trunk/src/geom/LineString.cpp 2010-02-28 19:01:20 UTC (rev 2931)
@@ -148,7 +148,7 @@
LineString::isEmpty() const
{
assert(points.get());
- return points->getSize()==0;
+ return points->isEmpty();
}
size_t
More information about the geos-commits
mailing list