From: Matthew Fernandez Date: Thu, 21 Apr 2022 15:13:35 +0000 (-0700) Subject: cgraph: remove some unused struct names X-Git-Tag: 4.0.0~63^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e7a7cf6c05408481d9be1a7a555fc5834b98a0b;p=graphviz cgraph: remove some unused struct names --- 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;