Opened 11 years ago
Closed 11 years ago
#6650 closed Bugs (fixed)
Reversed parameter documentation for 2-parameter filter::close
Reported by: | Owned by: | Jonathan Turkanis | |
---|---|---|---|
Milestone: | To Be Determined | Component: | iostreams |
Version: | Boost 1.48.0 | Severity: | Problem |
Keywords: | Cc: |
Description
http://www.boost.org/doc/libs/1_49_0/libs/iostreams/doc/classes/filter.html describes
template<typename Device> void close(std::ios_base::openmode, Device&);
It should be
template<typename Device> void close(Device&, std::ios_base::openmode);
as described in Closable: http://www.boost.org/doc/libs/1_49_0/libs/iostreams/doc/concepts/closable.html
Change History (2)
comment:1 by , 11 years ago
comment:2 by , 11 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [77174]) Fix parameters for filter::close. Refs #6650.
Also some markup fixes.