Opened 13 years ago
Closed 12 years ago
#3689 closed Bugs (fixed)
iostreams: multichar_dual_use_filter_tag definition wrong
| Reported by: | Owned by: | Jonathan Turkanis | |
|---|---|---|---|
| Milestone: | Boost 1.42.0 | Component: | iostreams |
| Version: | Boost 1.41.0 | Severity: | Problem |
| Keywords: | Cc: |
Description
In boost/iostreams/categories.hpp, this definition:
struct multichar_dual_use_filter_tag
: filter_tag,
dual_use
{ };
is wrong, because multichar_dual_use_filter_tag should inherit from multichar_tag. It should be
struct multichar_dual_use_filter_tag
: multichar_tag,
dual_use_filter_tag
{ };
Note:
See TracTickets
for help on using tickets.

(In [63033]) Fix definition of multichar_dual_use_filter_tag. Fixes #3689.