id summary reporter owner description type status milestone component version severity resolution keywords cc 2132 const-correctness bug in sparse_ordering.hpp Dave Abrahams Jeremiah Willcock "Did this code even get tested? Or am I on crack to think that it's wrong? This patch fixes it for my particular test case. {{{ #!patch Index: sparse_ordering.hpp =================================================================== --- sparse_ordering.hpp (revision 47085) +++ sparse_ordering.hpp (working copy) @@ -128,7 +128,7 @@ // template Vertex - pseudo_peripheral_pair(Graph& G, const Vertex& u, int& ecc, + pseudo_peripheral_pair(Graph const& G, const Vertex& u, int& ecc, ColorMap color, DegreeMap degree) { typedef typename property_traits::value_type ColorValue; @@ -152,7 +152,7 @@ // of the ordering generated by RCM. // template - Vertex find_starting_node(Graph& G, Vertex r, Color color, Degree degree) + Vertex find_starting_node(Graph const& G, Vertex r, Color color, Degree degree) { Vertex x, y; int eccen_r, eccen_x; }}}" Bugs closed Boost 1.36.0 graph Boost 1.35.0 Problem fixed