Subject: [Boost-bugs] [Boost C++ Libraries] #10937: tuple_manipulator has char in constructor
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2015-01-17 19:06:24
#10937: tuple_manipulator has char in constructor
------------------------------+---------------------
Reporter: gast128@⦠| Owner: djowel
Type: Bugs | Status: new
Milestone: To Be Determined | Component: tuple
Version: Boost 1.57.0 | Severity: Problem
Keywords: |
------------------------------+---------------------
The constructor of tuple_manipulator has hard coded type char. Shouldn't
this be CharType?
{{{#!cpp
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)
}}}
->
{{{#!cpp
explicit tuple_manipulator(detail::format_info::manipulator_type m,
const CharType c = 0)
}}}
-- Ticket URL: <https://svn.boost.org/trac/boost/ticket/10937> Boost C++ Libraries <http://www.boost.org/> Boost provides free peer-reviewed portable C++ source libraries.
This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:17 UTC