Opened 12 years ago
Closed 12 years ago
#4310 closed Bugs (fixed)
boost graph compressed sparse row graph csr_in_edge_iterator doesn't compile
Reported by: | Owned by: | Jeremiah Willcock | |
---|---|---|---|
Milestone: | Boost 1.43.0 | Component: | graph |
Version: | Boost 1.43.0 | Severity: | Problem |
Keywords: | Cc: |
Description
The csr_in_edge_iterator class template contains a reference member (const CSRGraph & m_graph) and a default constructor taking no arguments. Since references cannot be non-initialized this won't compile. I have hacked a fix by making m_graph a pointer member, but I suppose a proper solution would look different.
Change History (2)
comment:1 by , 12 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [62592]) Added fixes and tests for CSR in_edge_iterator; fixes #4310, #4311