[postgis-tickets] r15491 - Get rid of const define for ptarray_remove_repeated_points_minpoints, caused compile error

Regina Obe lr at pcorp.us
Thu Jul 20 21:54:48 PDT 2017


Author: robe
Date: 2017-07-20 21:54:48 -0700 (Thu, 20 Jul 2017)
New Revision: 15491

Modified:
   branches/2.2/liblwgeom/ptarray.c
Log:
Get rid of const define for ptarray_remove_repeated_points_minpoints, caused compile error

Modified: branches/2.2/liblwgeom/ptarray.c
===================================================================
--- branches/2.2/liblwgeom/ptarray.c	2017-07-20 22:48:06 UTC (rev 15490)
+++ branches/2.2/liblwgeom/ptarray.c	2017-07-21 04:54:48 UTC (rev 15491)
@@ -1496,7 +1496,7 @@
 }
 
 POINTARRAY *
-ptarray_remove_repeated_points(const POINTARRAY *in, double tolerance)
+ptarray_remove_repeated_points( POINTARRAY *in, double tolerance)
 {
 	return ptarray_remove_repeated_points_minpoints(in, tolerance, 2);
 }



More information about the postgis-tickets mailing list