Opened 15 years ago
Closed 14 years ago
#1385 closed Bugs (fixed)
begin must be boost-qualified
Reported by: | Owned by: | Pavol Droba | |
---|---|---|---|
Milestone: | Boost 1.36.0 | Component: | string_algo |
Version: | Boost Development Trunk | Severity: | Problem |
Keywords: | Cc: |
Description
Some unqualified calls of boost::begin/end are found.
For example, return Finder(begin(lit_input),end(lit_input));
Unqualified calls may look up a wrong "begin" in associated namespaces.
So, boost::begin
should be used instead of unqualified begin
.
Note:
See TracTickets
for help on using tickets.
Fixed, thanks.