[postgis-commits] svn - r3108 - branches/1.3/lwgeom

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Tue Oct 14 13:45:30 PDT 2008


Author: mcayland
Date: 2008-10-14 13:45:30 -0700 (Tue, 14 Oct 2008)
New Revision: 3108

Modified:
   branches/1.3/lwgeom/lwgeom_geos_c.c
Log:
Fix warnings caused by incorrect header prototypes for GEOSPreparedGeom_destroy (now fixed with this patch and the patch in GEOS SVN)


Modified: branches/1.3/lwgeom/lwgeom_geos_c.c
===================================================================
--- branches/1.3/lwgeom/lwgeom_geos_c.c	2008-10-14 20:11:07 UTC (rev 3107)
+++ branches/1.3/lwgeom/lwgeom_geos_c.c	2008-10-14 20:45:30 UTC (rev 3108)
@@ -61,7 +61,7 @@
 	size_t                        pg_geom2_size;
 	int32                         argnum;
 	const GEOSPreparedGeometry*   prepared_geom;
-	const GEOSGeometry*           geom;
+	GEOSGeometry*                 geom;
 	MemoryContext                 context;
 } PrepGeomCache;
 
@@ -3666,7 +3666,7 @@
 {
 	MemoryContext context;
 	const GEOSPreparedGeometry* prepared_geom;
-	const GEOSGeometry* geom;
+	GEOSGeometry* geom;
 } PrepGeomHashEntry;
 
 



More information about the postgis-commits mailing list