--- ../boost_1_33_1/boost/graph/adjacency_list_io.hpp 2006-04-10 19:07:01.000000000 +0200 +++ ./adjacency_list_io_my.hpp 2006-04-10 20:21:21.000000000 +0200 @@ -125,6 +125,7 @@ { typedef Graph_t Graph; + typedef enum{ PARSE_NUM_NODES, PARSE_VERTEX, PARSE_EDGE } State; GraphParser( Graph* g ): graph(g) {} @@ -134,7 +135,6 @@ typedef typename graph_traits::vertex_descriptor Vertex; std::vector nodes; - typedef enum{ PARSE_NUM_NODES, PARSE_VERTEX, PARSE_EDGE } State; State state = PARSE_VERTEX; unsigned int numLine = 1;