From 9e7a7cf6c05408481d9be1a7a555fc5834b98a0b Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Thu, 21 Apr 2022 08:13:35 -0700 Subject: [PATCH] cgraph: remove some unused struct names --- lib/cgraph/cmpnd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/cgraph/cmpnd.c b/lib/cgraph/cmpnd.c index 5434c95e3..dbccc2b37 100644 --- a/lib/cgraph/cmpnd.c +++ b/lib/cgraph/cmpnd.c @@ -30,28 +30,28 @@ static char Descriptor_id[] = "AG_cmpnd"; -typedef struct Agcmpnode_s { +typedef struct { Agrec_t hdr; Agraph_t *subg; int collapsed; } Agcmpnode_t; -typedef struct Agcmpgraph_s { +typedef struct { Agrec_t hdr; Agnode_t *node; /* its associated node */ Dict_t *hidden_node_set; } Agcmpgraph_t; -typedef struct save_e_s { +typedef struct { Agnode_t *from, *to; } save_e_t; -typedef struct save_stack_s { +typedef struct { save_e_t *mem; int stacksize; } save_stack_t; -typedef struct Agcmpedge_s { +typedef struct { Agrec_t hdr; save_stack_t stack[2]; /* IN and OUT save stacks */ } Agcmpedge_t; -- 2.40.0