[postgis-commits] svn - r2677 - trunk/lwgeom
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Thu Aug 2 12:57:39 PDT 2007
Author: mleslie
Date: 2007-08-02 12:57:38 -0700 (Thu, 02 Aug 2007)
New Revision: 2677
Modified:
trunk/lwgeom/lwgeom_functions_analytic.c
Log:
Removed a call to the deprecated point_in_ring function.
Modified: trunk/lwgeom/lwgeom_functions_analytic.c
===================================================================
--- trunk/lwgeom/lwgeom_functions_analytic.c 2007-08-02 08:20:44 UTC (rev 2676)
+++ trunk/lwgeom/lwgeom_functions_analytic.c 2007-08-02 19:57:38 UTC (rev 2677)
@@ -1409,7 +1409,7 @@
for(i=1; i<ringCount; i++)
{
- if(point_in_ring_deprecated(root[i], &pt) == 1)
+ if(point_in_ring(root[i], &pt) == 1)
{
#ifdef PGIS_DEBUG
lwnotice("point_outside_polygon: within hole %d.", i);
More information about the postgis-commits
mailing list