2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-26 04:42:16 +00:00

Fixed warnings

[SVN r77531]
This commit is contained in:
Jeremiah Willcock
2012-03-25 05:00:36 +00:00
parent 6f4b8bf204
commit 035fac705c

View File

@@ -20,12 +20,11 @@ int test_main(int, char*[])
property<edge_weight_t, int> > Graph;
Graph graph;
Graph::vertex_descriptor v1, v2, v3, v4;
v1 = add_vertex(graph);
v2 = add_vertex(graph);
v3 = add_vertex(graph);
v4 = add_vertex(graph);
(void)add_vertex(graph);
(void)add_vertex(graph);
(void)add_vertex(graph);
(void)add_vertex(graph);
Graph::edge_descriptor e;