Opened 13 years ago

Closed 12 years ago

#3689 closed Bugs (fixed)

iostreams: multichar_dual_use_filter_tag definition wrong

Reported by: dk.boost@… 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
    { };

Change History (1)

comment:1 by Steven Watanabe, 12 years ago

Resolution: fixed
Status: newclosed

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

Note: See TracTickets for help on using tickets.