Char -> char_type

This commit is contained in:
Victor Zverovich
2016-10-22 08:19:19 -07:00
parent f85d5f4dac
commit be613204ab
3 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -281,13 +281,13 @@ class PrintfArgFormatter
};
/** This template formats data and writes the output to a writer. */
template <typename CharType,
typename ArgFormatter = PrintfArgFormatter<CharType> >
template <typename Char,
typename ArgFormatter = PrintfArgFormatter<Char> >
class PrintfFormatter :
private internal::FormatterBase<PrintfFormatter<CharType, ArgFormatter>> {
private internal::FormatterBase<PrintfFormatter<Char, ArgFormatter>> {
public:
/** The character type for the output. */
typedef CharType Char;
typedef Char char_type;
private:
BasicWriter<Char> &writer_;