id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 7869,boost::in_edges bug,ny_218@…,Jeremiah Willcock,"The following code will generate an exception in Visual Studio 2010: {{{ #include #include int main() { typedef boost::adjacency_list< boost::listS, boost::vecS, boost::bidirectionalS> graph_t; graph_t myGraph; graph_t::vertex_descriptor v1 = boost::add_vertex(myGraph); graph_t::vertex_descriptor v2 = boost::add_vertex(myGraph); boost::remove_vertex(v1, myGraph); boost::graph_traits::in_edge_iterator itEdge, itEnd; boost::tie(itEdge, itEnd) = boost::in_edges(v2, myGraph); for(; itEdge != itEnd; ++itEdge) { std::cout << boost::source(*itEdge, myGraph) << std::endl; } return 0; } }}} ",Bugs,closed,To Be Determined,graph,Boost 1.52.0,Problem,invalid,,