[postgis-tickets] r17138 - Harmonize circ_tree_contains_point to new signature

Paul Ramsey pramsey at cleverelephant.ca
Fri Jan 11 01:17:01 PST 2019


Author: pramsey
Date: 2019-01-11 13:17:01 -0800 (Fri, 11 Jan 2019)
New Revision: 17138

Modified:
   trunk/postgis/geography_measurement_trees.c
Log:
Harmonize circ_tree_contains_point to new signature


Modified: trunk/postgis/geography_measurement_trees.c
===================================================================
--- trunk/postgis/geography_measurement_trees.c	2019-01-11 21:07:17 UTC (rev 17137)
+++ trunk/postgis/geography_measurement_trees.c	2019-01-11 21:17:01 UTC (rev 17138)
@@ -141,7 +141,7 @@
 			POSTGIS_DEBUGF(3, "p2d_inside=POINT(%g %g) p2d_outside=POINT(%g %g)", pt2d_inside.x, pt2d_inside.y, pt2d_outside.x, pt2d_outside.y);
 			/* Test the candidate point for strict containment */
 			POSTGIS_DEBUG(3, "calling circ_tree_contains_point for PiP test");
-			return circ_tree_contains_point(tree1, &pt2d_inside, &pt2d_outside, NULL);
+			return circ_tree_contains_point(tree1, &pt2d_inside, &pt2d_outside, 0, NULL);
 		}
 	}
 	else



More information about the postgis-tickets mailing list