id summary reporter owner description type status milestone component version severity resolution keywords cc 4342 "quick_tour/""Adding some color..."" Graph constructor wrong" Jim Bell Andrew Sutton "On the quick_tour page, under ""Adding Some Color to your Graph"", you show the graph constructor as {{{ Graph G(edges + sizeof(edges) / sizeof(E), weights, num_nodes); }}} The constructor needs the beginning of the edges array (consistent with your earlier example): {{{ Graph G(edges, edges + sizeof(edges) / sizeof(E), weights, num_nodes); }}} " Patches closed Boost 1.43.0 graph Boost 1.44.0 Cosmetic fixed