ArgFormatter -> arg_formatter

This commit is contained in:
Victor Zverovich
2017-02-18 07:46:32 -08:00
parent 50e716737d
commit 4ec8860783
5 changed files with 23 additions and 23 deletions
+3 -3
View File
@@ -210,7 +210,7 @@ class PrintfWidthHandler {
\endrst
*/
template <typename Char>
class PrintfArgFormatter : public internal::ArgFormatterBase<Char> {
class printf_arg_formatter : public internal::ArgFormatterBase<Char> {
private:
void write_null_pointer() {
this->spec().type_ = 0;
@@ -229,7 +229,7 @@ class PrintfArgFormatter : public internal::ArgFormatterBase<Char> {
specifier information for standard argument types.
\endrst
*/
PrintfArgFormatter(basic_buffer<Char> &buffer, format_specs &spec)
printf_arg_formatter(basic_buffer<Char> &buffer, format_specs &spec)
: internal::ArgFormatterBase<Char>(buffer, spec) {}
using Base::operator();
@@ -295,7 +295,7 @@ class PrintfArgFormatter : public internal::ArgFormatterBase<Char> {
/** This template formats data and writes the output to a writer. */
template <typename Char,
typename ArgFormatter = PrintfArgFormatter<Char> >
typename ArgFormatter = printf_arg_formatter<Char> >
class printf_context :
private internal::context_base<
Char, printf_context<Char, ArgFormatter>> {