Opened 5 years ago
Last modified 4 years ago
#13314 new Bugs
warning in graph/transitive_closure.hpp
Reported by: | Owned by: | Jeremiah Willcock | |
---|---|---|---|
Milestone: | To Be Determined | Component: | graph |
Version: | Boost 1.63.0 | Severity: | Cosmetic |
Keywords: | Cc: |
Description
line 92 of graph/include/boost/graph/transitive_closure.hpp
int num_scc = strong_components(g, component_number,
vertex_index_map(index_map));
should be
size_type num_scc = strong_components(g, component_number,
vertex_index_map(index_map));
otherwise there is a warning in case of size_t used in EdgeProperties
Note:
See TracTickets
for help on using tickets.