]> granicus.if.org Git - graphviz/commitdiff
cgraph: remove some unused struct names
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 21 Apr 2022 15:13:35 +0000 (08:13 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 28 Apr 2022 00:09:19 +0000 (17:09 -0700)
lib/cgraph/cmpnd.c

index 5434c95e3c54a1cfbeb8dbb237b080eeafb6fdc0..dbccc2b37df6f935d042b80b9014dcdccc5bcef1 100644 (file)
 
 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;