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

◆ geos_destroy()

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

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

120 {
121 va_list ap;
122 va_start(ap, count);
123 while (count--)
124 {
125 GEOSGeometry* g = va_arg(ap, GEOSGeometry*);
126 if (g)
127 {
128 GEOSGeom_destroy(g);
129 }
130 }
131 va_end(ap);
132}