Opened 9 years ago
Closed 8 years ago
#9707 closed Bugs (fixed)
Compilation errors in is_permutation and callees
Reported by: | Owned by: | Marshall Clow | |
---|---|---|---|
Milestone: | To Be Determined | Component: | algorithm |
Version: | Boost 1.55.0 | Severity: | Showstopper |
Keywords: | Cc: |
Description
The 4-iterator version of is_permutation (in boost/algorithm/cxx14/is_permutation.hpp) has obvious compilation errors:
_ForwardIterator1 is not a type (needless underscore, and a reserved identifier at that)
InputIterator1 is not a type (copy/paste bug?)
iterator_traits is used without namespace qualification in the first two statements.
Furthermore, the functions that it calls are broken in similar ways:
_VSTD namespace qualifier is used, but doesn't exist
etc...
Change History (2)
comment:1 by , 9 years ago
comment:2 by , 8 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Merged to release in cf249c090c3021faebbcf5f6cf5574ce258aa7f6
Note:
See TracTickets
for help on using tickets.
Should already be fixed in develop; see git commit b9d89c559b (svn 84389).