[GRASS-SVN] r61463 - grass/branches/releasebranch_7_0/lib/vector/Vlib
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jul 30 11:30:02 PDT 2014
Author: mmetz
Date: 2014-07-30 11:30:01 -0700 (Wed, 30 Jul 2014)
New Revision: 61463
Modified:
grass/branches/releasebranch_7_0/lib/vector/Vlib/remove_areas.c
Log:
Vlib: disable fast version of Vect_remove_small_areas()
Modified: grass/branches/releasebranch_7_0/lib/vector/Vlib/remove_areas.c
===================================================================
--- grass/branches/releasebranch_7_0/lib/vector/Vlib/remove_areas.c 2014-07-30 17:08:10 UTC (rev 61462)
+++ grass/branches/releasebranch_7_0/lib/vector/Vlib/remove_areas.c 2014-07-30 18:30:01 UTC (rev 61463)
@@ -43,11 +43,14 @@
Vect_remove_small_areas(struct Map_info *Map, double thresh,
struct Map_info *Err, double *removed_area)
{
+ return Vect_remove_small_areas_ext(Map, thresh, Err, removed_area);
+#if 0
if (Map->format == GV_FORMAT_NATIVE)
return Vect_remove_small_areas_nat(Map, thresh, Err, removed_area);
else
return Vect_remove_small_areas_ext(Map, thresh, Err, removed_area);
+#endif
}
int
More information about the grass-commit
mailing list