PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ geos_destroy()

static void geos_destroy ( size_t  count,
  ... 
)
static

Definition at line 96 of file liblwgeom/lwgeom_geos.c.

96 {
97 va_list ap;
98 va_start(ap, count);
99 while (count--)
100 {
101 GEOSGeometry* g = va_arg(ap, GEOSGeometry*);
102 if (g)
103 {
104 GEOSGeom_destroy(g);
105 }
106 }
107}