]> granicus.if.org Git - postgis/commitdiff
Style only change
authorSandro Santilli <strk@keybit.net>
Mon, 29 Jun 2015 09:09:57 +0000 (09:09 +0000)
committerSandro Santilli <strk@keybit.net>
Mon, 29 Jun 2015 09:09:57 +0000 (09:09 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@13736 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/lwgeom_topo.c

index e54c15899b2117743d7517e99abcc4b7a8c2f86e..ee62d896c8fc5a1eaf3cb8ee67c53bbbbeb08248 100644 (file)
@@ -205,7 +205,8 @@ lwt_be_ExistsEdgeIntersectingPoint(LWT_TOPOLOGY* topo, LWPOINT* pt)
  *
  ************************************************************************/
 
-LWT_TOPOLOGY *lwt_LoadTopology(LWT_BE_IFACE *iface, const char *name)
+LWT_TOPOLOGY *
+lwt_LoadTopology( LWT_BE_IFACE *iface, const char *name )
 {
   LWT_BE_TOPOLOGY* be_topo;
   LWT_TOPOLOGY* topo;
@@ -226,7 +227,7 @@ LWT_TOPOLOGY *lwt_LoadTopology(LWT_BE_IFACE *iface, const char *name)
 }
 
 void
-lwt_FreeTopology(LWT_TOPOLOGY* topo)
+lwt_FreeTopology( LWT_TOPOLOGY* topo )
 {
   if ( ! lwt_be_freeTopology(topo) ) {
     lwnotice("Could not release backend topology memory: %s",
@@ -236,8 +237,9 @@ lwt_FreeTopology(LWT_TOPOLOGY* topo)
 }
 
 
-LWT_ELEMID lwt_AddIsoNode(LWT_TOPOLOGY* topo, LWT_ELEMID face, LWPOINT* pt,
-                          int skipISOChecks)
+LWT_ELEMID
+lwt_AddIsoNode( LWT_TOPOLOGY* topo, LWT_ELEMID face,
+                LWPOINT* pt, int skipISOChecks )
 {
   LWT_ELEMID foundInFace = -1;
 
@@ -291,7 +293,9 @@ LWT_ELEMID lwt_AddIsoNode(LWT_TOPOLOGY* topo, LWT_ELEMID face, LWPOINT* pt,
   return node.node_id;
 }
 
-LWT_ELEMID lwt_ModEdgeSplit(LWT_TOPOLOGY* topo, LWT_ELEMID edge, LWPOINT* pt, int skipISOChecks)
+LWT_ELEMID
+lwt_ModEdgeSplit( LWT_TOPOLOGY* topo, LWT_ELEMID edge,
+                  LWPOINT* pt, int skipISOChecks )
 {
   LWT_ISO_NODE node;
   LWT_ISO_EDGE* oldedge;