From e34e906c023c8fcd4ecf3e217b74ddfb8d9ed26b Mon Sep 17 00:00:00 2001 From: Costa Shulyupin Date: Sun, 24 Apr 2022 10:20:26 +0300 Subject: [PATCH] sgraph: remove trailing spaces --- lib/ortho/sgraph.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/ortho/sgraph.h b/lib/ortho/sgraph.h index 228aa78d5..26af31af4 100644 --- a/lib/ortho/sgraph.h +++ b/lib/ortho/sgraph.h @@ -1,5 +1,6 @@ + /************************************************************************* - * Copyright (c) 2011 AT&T Intellectual Property + * Copyright (c) 2011 AT&T Intellectual Property * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -27,7 +28,7 @@ struct snode { /* edges incident on this node * -- stored as indices of the edges array in the graph */ - int* adj_edge_list; + int* adj_edge_list; int index; bool isVert; /* true if node corresponds to vertical segment */ }; @@ -38,7 +39,7 @@ struct sedge { /* end-points of the edge * -- stored as indices of the nodes vector in the graph */ - int v1, v2; + int v1, v2; }; typedef struct { -- 2.40.0