forked from boostorg/tuple
Merge pull request #14 from Lastique/patch-1
Fix narrowing conversion in tuple_manipulator constructor
This commit is contained in:
@ -102,7 +102,7 @@ class tuple_manipulator {
|
|||||||
CharType f_c;
|
CharType f_c;
|
||||||
public:
|
public:
|
||||||
explicit tuple_manipulator(detail::format_info::manipulator_type m,
|
explicit tuple_manipulator(detail::format_info::manipulator_type m,
|
||||||
const char c = 0)
|
CharType c = CharType())
|
||||||
: mt(m), f_c(c) {}
|
: mt(m), f_c(c) {}
|
||||||
|
|
||||||
template<class CharTrait>
|
template<class CharTrait>
|
||||||
|
Reference in New Issue
Block a user