[Boost-bugs] [Boost C++ Libraries] #4311: boost graph compressed sparse row graph in_edges doesn't compile

Subject: [Boost-bugs] [Boost C++ Libraries] #4311: boost graph compressed sparse row graph in_edges doesn't compile
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2010-06-08 12:49:01


#4311: boost graph compressed sparse row graph in_edges doesn't compile
--------------------------------------------------------------------+-------
 Reporter: Sören Meyer-Eppler <Soeren.Meyer-Eppler@…> | Owner: asutton
     Type: Bugs | Status: new
Milestone: Boost 1.43.0 | Component: graph
  Version: Boost 1.43.0 | Severity: Problem
 Keywords: |
--------------------------------------------------------------------+-------
 compressed_sparse_row_graph.hpp contains an in_edges template that uses:
 return std::make_pair(it(ed(v, v_row_start)),
                       it(ed(v, next_row_start)));
 to create its return value. However, there is no inedge constructor that
 takes an edge descriptor as argument. Use this instead:
  return std::make_pair(it(g, v_row_start),it(g,next_row_start));

-- 
Ticket URL: <https://svn.boost.org/trac/boost/ticket/4311>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:03 UTC