浏览代码

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 年之前
父节点
当前提交
d352f3033a
共有 1 个文件被更改,包括 2 次插入4 次删除
  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)