Opened 13 years ago
Closed 13 years ago
#4099 closed Bugs (fixed)
boost/detail/algorithm.hpp - ambiguity between boost::begin and std::begin
Reported by: | Owned by: | Jeremiah Willcock | |
---|---|---|---|
Milestone: | Boost 1.43.0 | Component: | range |
Version: | Boost Development Trunk | Severity: | Problem |
Keywords: | Cc: |
Description
A couple of the graph regression tests are failing on VC10 because the calls to 'begin' and 'end' on line 77 of boost/detail/algorithm.hpp are ambiguous (it can't decide whether to call boost::begin or std::begin).
Qualifying both calls with boost:: is enough to get the graph tests passing, but the other calls on line 66 might need changing as well to avoid similar problems elsewhere.
(The error message for the failure isn't visible on the regression tests at this moment, but should appear when the results cycle).
Change History (2)
comment:1 by , 13 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [61263]) Disambiguated begin and end; fixes #4099