Browse Source

remove unused variable from geos.c

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@36539 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 16 years ago
parent
commit
d352f3033a
1 changed files with 2 additions and 4 deletions
  1. 2 4
      lib/vector/Vlib/geos.c

+ 2 - 4
lib/vector/Vlib/geos.c

@@ -37,9 +37,7 @@ static struct line_pnts *Points;
 GEOSGeometry *Vect_read_line_geos(const struct Map_info *Map, int line)
 {
     int type, dim;
-    GEOSGeometry *geom;
-    GEOSCoordSequence *pseq;
-
+    
     if (!Points)
 	Points = Vect_new_line_struct();
 
@@ -70,7 +68,7 @@ GEOSGeometry *Vect_read_line_geos(const struct Map_info *Map, int line)
  */
 GEOSGeometry *Vect_read_area_geos(const struct Map_info * Map, int area)
 {
-    int i, type, dim, nholes, isle;
+    int i, dim, nholes, isle;
     GEOSGeometry *boundary, **holes;
 
     if (!Points)