Opened 8 years ago
#10937 new Bugs
tuple_manipulator has char in constructor
Reported by: | Owned by: | Joel de Guzman | |
---|---|---|---|
Milestone: | To Be Determined | Component: | tuple |
Version: | Boost 1.57.0 | Severity: | Problem |
Keywords: | Cc: |
Description
The constructor of tuple_manipulator has hard coded type char. Shouldn't this be CharType?
template<class CharType> class tuple_manipulator { const detail::format_info::manipulator_type mt; CharType f_c; public: explicit tuple_manipulator(detail::format_info::manipulator_type m, const char c = 0)
->
explicit tuple_manipulator(detail::format_info::manipulator_type m, const CharType c = 0)
Note:
See TracTickets
for help on using tickets.