Merge pull request #14 from Lastique/patch-1

Fix narrowing conversion in tuple_manipulator constructor
This commit is contained in:
Joel de Guzman
2019-09-16 08:03:52 +08:00
committed by GitHub

View File

@ -102,7 +102,7 @@ class tuple_manipulator {
CharType f_c;
public:
explicit tuple_manipulator(detail::format_info::manipulator_type m,
const char c = 0)
CharType c = CharType())
: mt(m), f_c(c) {}
template<class CharTrait>