Opened 10 years ago
Closed 10 years ago
#7467 closed Bugs (fixed)
graph/reverse_graph.hpp:442: error: extra ';'
Reported by: | Owned by: | Jeremiah Willcock | |
---|---|---|---|
Milestone: | To Be Determined | Component: | graph |
Version: | Boost 1.52.0 | Severity: | Problem |
Keywords: | Cc: |
Description
The header reverse_graph.hpp contains a semicolon after a namespace declaration (line 436 in the current revision 80841, the line from the summary is from 1.49). While this seems to be legal now in C++11, older compilers (such as FreeBSD's base compiler, gcc (GCC) 4.2.1 20070831) report an error with -ansi -pedantic flags.
Solution: simply remove the semicolon.
Note:
See TracTickets
for help on using tickets.
(In [80842]) Removed extra semicolon; fixes #7467