X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..955310e4fe48139407cabfd6cae815a287932291:/include/xbt/graph.h diff --git a/include/xbt/graph.h b/include/xbt/graph.h index 50eeb68a05..98e7661831 100644 --- a/include/xbt/graph.h +++ b/include/xbt/graph.h @@ -23,7 +23,6 @@ typedef struct xbt_graph *xbt_graph_t; /* Node structure */ /* Be careful of what you do with this structure */ -/* typedef struct xbt_node *xbt_node_t; */ typedef struct xbt_node { xbt_dynar_t out; xbt_dynar_t in; /* not used when the graph is directed */ @@ -34,7 +33,6 @@ typedef struct xbt_node { /* edge structure */ /* Be careful of what you do with this structure */ -/* typedef struct xbt_edge *xbt_edge_t; */ typedef struct xbt_edge { xbt_node_t src; xbt_node_t dst; @@ -43,7 +41,6 @@ typedef struct xbt_edge { /* Graph structure */ /* Be careful of what you do with this structure */ -/* typedef struct xbt_graph *xbt_graph_t; */ typedef struct xbt_graph { xbt_dynar_t nodes; xbt_dynar_t edges;