diff --git a/fmt/format.cc b/fmt/format.cc index 92479615..cd17ebf1 100644 --- a/fmt/format.cc +++ b/fmt/format.cc @@ -106,7 +106,7 @@ inline int fmt_snprintf(char *buffer, size_t size, const char *format, ...) { const char RESET_COLOR[] = "\x1b[0m"; -typedef void (*FormatFunc)(Writer &, int, StringRef); +typedef void (*FormatFunc)(writer &, int, StringRef); // Portable thread-safe version of strerror. // Sets buffer to point to a string describing the error code. @@ -176,7 +176,7 @@ int safe_strerror( return StrError(error_code, buffer, buffer_size).run(); } -void format_error_code(Writer &out, int error_code, +void format_error_code(writer &out, int error_code, StringRef message) FMT_NOEXCEPT { // Report error code making sure that the output fits into // INLINE_BUFFER_SIZE to avoid dynamic memory allocation and potential @@ -215,7 +215,7 @@ namespace internal { // This method is used to preserve binary compatibility with fmt 3.0. // It can be removed in 4.0. FMT_FUNC void format_system_error( - Writer &out, int error_code, StringRef message) FMT_NOEXCEPT { + writer &out, int error_code, StringRef message) FMT_NOEXCEPT { fmt::format_system_error(out, error_code, message); } } // namespace internal @@ -354,7 +354,7 @@ FMT_FUNC void WindowsError::init( } FMT_FUNC void internal::format_windows_error( - Writer &out, int error_code, StringRef message) FMT_NOEXCEPT { + writer &out, int error_code, StringRef message) FMT_NOEXCEPT { FMT_TRY { MemoryBuffer buffer; buffer.resize(INLINE_BUFFER_SIZE); @@ -383,7 +383,7 @@ FMT_FUNC void internal::format_windows_error( #endif // FMT_USE_WINDOWS_H FMT_FUNC void format_system_error( - Writer &out, int error_code, StringRef message) FMT_NOEXCEPT { + writer &out, int error_code, StringRef message) FMT_NOEXCEPT { FMT_TRY { internal::MemoryBuffer buffer; buffer.resize(internal::INLINE_BUFFER_SIZE); @@ -440,7 +440,7 @@ FMT_FUNC void vprint_colored(Color c, CStringRef format, format_args args) { } template -void printf(BasicWriter &w, BasicCStringRef format, +void printf(basic_writer &w, BasicCStringRef format, format_args args); FMT_FUNC int vfprintf(std::FILE *f, CStringRef format, printf_args args) { @@ -460,7 +460,7 @@ template void internal::FixedBuffer::grow(std::size_t); template void internal::ArgMap::init(const format_args &args); -template void printf_context::format(Writer &writer); +template void printf_context::format(writer &writer); template int internal::CharTraits::format_float( char *buffer, std::size_t size, const char *format, @@ -478,7 +478,7 @@ template void internal::FixedBuffer::grow(std::size_t); template void internal::ArgMap::init(const wformat_args &args); -template void printf_context::format(WWriter &writer); +template void printf_context::format(wwriter &writer); template int internal::CharTraits::format_float( wchar_t *buffer, std::size_t size, const wchar_t *format, diff --git a/fmt/format.h b/fmt/format.h index 6f9007dd..1549f4a5 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -365,10 +365,10 @@ using std::move; #endif template -class BasicWriter; +class basic_writer; -typedef BasicWriter Writer; -typedef BasicWriter WWriter; +typedef basic_writer writer; +typedef basic_writer wwriter; template class basic_format_arg; @@ -987,7 +987,7 @@ class UTF16ToUTF8 { FMT_API int convert(WStringRef s); }; -FMT_API void format_windows_error(fmt::Writer &out, int error_code, +FMT_API void format_windows_error(fmt::writer &out, int error_code, fmt::StringRef message) FMT_NOEXCEPT; #endif @@ -1076,7 +1076,7 @@ enum Type { }; template -struct StringValue { +struct string_value { const Char *value; std::size_t size; }; @@ -1084,7 +1084,7 @@ struct StringValue { template struct CustomValue { typedef void (*FormatFunc)( - BasicWriter &writer, const void *arg, void *ctx); + basic_writer &writer, const void *arg, void *ctx); const void *value; FormatFunc format; @@ -1161,10 +1161,10 @@ class value { double double_value; long double long_double_value; const void *pointer; - StringValue string; - StringValue sstring; - StringValue ustring; - StringValue tstring; + string_value string; + string_value sstring; + string_value ustring; + string_value tstring; CustomValue custom; }; @@ -1206,7 +1206,7 @@ class value { // Formats an argument of a custom type, such as a user-defined class. template static void format_custom_arg( - BasicWriter &writer, const void *arg, void *context) { + basic_writer &writer, const void *arg, void *context) { format_value(writer, *static_cast(arg), *static_cast(context)); } @@ -1466,7 +1466,7 @@ inline fmt::StringRef thousands_sep(...) { return ""; } #endif template -void format_value(BasicWriter &, const T &, Formatter &, const Char *) { +void format_value(basic_writer &, const T &, Formatter &, const Char *) { FMT_STATIC_ASSERT(False::value, "Cannot format argument. To enable the use of ostream " "operator<< include fmt/ostream.h. Otherwise provide " @@ -1925,7 +1925,7 @@ void ArgMap::init(const basic_format_args &args) { template class ArgFormatterBase { private: - BasicWriter &writer_; + basic_writer &writer_; FormatSpec &spec_; FMT_DISALLOW_COPY_AND_ASSIGN(ArgFormatterBase); @@ -1953,7 +1953,7 @@ class ArgFormatterBase { } protected: - BasicWriter &writer() { return writer_; } + basic_writer &writer() { return writer_; } FormatSpec &spec() { return spec_; } void write(bool value) { @@ -1968,7 +1968,7 @@ class ArgFormatterBase { public: typedef Char char_type; - ArgFormatterBase(BasicWriter &w, FormatSpec &s) + ArgFormatterBase(basic_writer &w, FormatSpec &s) : writer_(w), spec_(s) {} void operator()(monostate) { @@ -1997,7 +1997,7 @@ class ArgFormatterBase { } if (spec_.align_ == ALIGN_NUMERIC || spec_.flags_ != 0) FMT_THROW(format_error("invalid format specifier for char")); - typedef typename BasicWriter::CharPtr CharPtr; + typedef typename basic_writer::CharPtr CharPtr; Char fill = internal::CharTraits::cast(spec_.fill()); CharPtr out = CharPtr(); const unsigned CHAR_WIDTH = 1; @@ -2041,7 +2041,7 @@ class ArgFormatterBase { }; template -inline void write(BasicWriter &w, const Char *start, const Char *end) { +inline void write(basic_writer &w, const Char *start, const Char *end) { if (start != end) w << BasicStringRef(start, internal::to_unsigned(end - start)); } @@ -2115,7 +2115,7 @@ class ArgFormatter : public internal::ArgFormatterBase { format specifier information for standard argument types. \endrst */ - ArgFormatter(BasicWriter &writer, basic_format_context &ctx, + ArgFormatter(basic_writer &writer, basic_format_context &ctx, FormatSpec &spec) : internal::ArgFormatterBase(writer, spec), ctx_(ctx) {} @@ -2223,7 +2223,7 @@ class SystemError : public internal::RuntimeError { may look like "Unknown error -1" and is platform-dependent. \endrst */ -FMT_API void format_system_error(fmt::Writer &out, int error_code, +FMT_API void format_system_error(fmt::writer &out, int error_code, fmt::StringRef message) FMT_NOEXCEPT; /** @@ -2234,23 +2234,23 @@ FMT_API void format_system_error(fmt::Writer &out, int error_code, You can use one of the following typedefs for common character types: - +---------+----------------------+ - | Type | Definition | - +=========+======================+ - | Writer | BasicWriter | - +---------+----------------------+ - | WWriter | BasicWriter | - +---------+----------------------+ + +---------+-----------------------+ + | Type | Definition | + +=========+=======================+ + | writer | basic_writer | + +---------+-----------------------+ + | wwriter | basic_writer | + +---------+-----------------------+ \endrst */ template -class BasicWriter { +class basic_writer { private: // Output buffer. Buffer &buffer_; - FMT_DISALLOW_COPY_AND_ASSIGN(BasicWriter); + FMT_DISALLOW_COPY_AND_ASSIGN(basic_writer); typedef typename internal::CharTraits::CharPtr CharPtr; @@ -2349,17 +2349,17 @@ class BasicWriter { protected: /** - Constructs a ``BasicWriter`` object. + Constructs a ``basic_writer`` object. */ - explicit BasicWriter(Buffer &b) : buffer_(b) {} + explicit basic_writer(Buffer &b) : buffer_(b) {} public: /** \rst - Destroys a ``BasicWriter`` object. + Destroys a ``basic_writer`` object. \endrst */ - virtual ~BasicWriter() {} + virtual ~basic_writer() {} /** Returns the total number of characters written. @@ -2424,21 +2424,21 @@ class BasicWriter { vwrite(format, make_xformat_args>(args...)); } - BasicWriter &operator<<(int value) { + basic_writer &operator<<(int value) { write_decimal(value); return *this; } - BasicWriter &operator<<(unsigned value) { + basic_writer &operator<<(unsigned value) { return *this << IntFormatSpec(value); } - BasicWriter &operator<<(long value) { + basic_writer &operator<<(long value) { write_decimal(value); return *this; } - BasicWriter &operator<<(unsigned long value) { + basic_writer &operator<<(unsigned long value) { return *this << IntFormatSpec(value); } - BasicWriter &operator<<(LongLong value) { + basic_writer &operator<<(LongLong value) { write_decimal(value); return *this; } @@ -2448,11 +2448,11 @@ class BasicWriter { Formats *value* and writes it to the stream. \endrst */ - BasicWriter &operator<<(ULongLong value) { + basic_writer &operator<<(ULongLong value) { return *this << IntFormatSpec(value); } - BasicWriter &operator<<(double value) { + basic_writer &operator<<(double value) { write_double(value, FormatSpec()); return *this; } @@ -2463,7 +2463,7 @@ class BasicWriter { (``'g'``) and writes it to the stream. \endrst */ - BasicWriter &operator<<(long double value) { + basic_writer &operator<<(long double value) { write_double(value, FormatSpec()); return *this; } @@ -2471,12 +2471,12 @@ class BasicWriter { /** Writes a character to the stream. */ - BasicWriter &operator<<(char value) { + basic_writer &operator<<(char value) { buffer_.push_back(value); return *this; } - BasicWriter &operator<<( + basic_writer &operator<<( typename internal::WCharHelper::Supported value) { buffer_.push_back(value); return *this; @@ -2487,13 +2487,13 @@ class BasicWriter { Writes *value* to the stream. \endrst */ - BasicWriter &operator<<(fmt::BasicStringRef value) { + basic_writer &operator<<(fmt::BasicStringRef value) { const Char *str = value.data(); buffer_.append(str, str + value.size()); return *this; } - BasicWriter &operator<<( + basic_writer &operator<<( typename internal::WCharHelper::Supported value) { const char *str = value.data(); buffer_.append(str, str + value.size()); @@ -2501,14 +2501,14 @@ class BasicWriter { } template - BasicWriter &operator<<(IntFormatSpec spec) { + basic_writer &operator<<(IntFormatSpec spec) { internal::CharTraits::convert(FillChar()); write_int(spec.value(), spec); return *this; } template - BasicWriter &operator<<(const StrFormatSpec &spec) { + basic_writer &operator<<(const StrFormatSpec &spec) { const StrChar *s = spec.str(); write_str(s, std::char_traits::length(s), spec); return *this; @@ -2521,7 +2521,7 @@ class BasicWriter { template template -typename BasicWriter::CharPtr BasicWriter::write_str( +typename basic_writer::CharPtr basic_writer::write_str( const StrChar *s, std::size_t size, const AlignSpec &spec) { CharPtr out = CharPtr(); if (spec.width() > size) { @@ -2544,7 +2544,7 @@ typename BasicWriter::CharPtr BasicWriter::write_str( template template -void BasicWriter::write_str( +void basic_writer::write_str( BasicStringRef s, const FormatSpec &spec) { // Check if StrChar is convertible to Char. internal::CharTraits::convert(StrChar()); @@ -2564,8 +2564,7 @@ void BasicWriter::write_str( } template -typename BasicWriter::CharPtr - BasicWriter::fill_padding( +typename basic_writer::CharPtr basic_writer::fill_padding( CharPtr buffer, unsigned total_size, std::size_t content_size, wchar_t fill) { std::size_t padding = total_size - content_size; @@ -2581,8 +2580,7 @@ typename BasicWriter::CharPtr template template -typename BasicWriter::CharPtr - BasicWriter::prepare_int_buffer( +typename basic_writer::CharPtr basic_writer::prepare_int_buffer( unsigned num_digits, const Spec &spec, const char *prefix, unsigned prefix_size) { unsigned width = spec.width(); @@ -2645,7 +2643,7 @@ typename BasicWriter::CharPtr template template -void BasicWriter::write_int(T value, Spec spec) { +void basic_writer::write_int(T value, Spec spec) { unsigned prefix_size = 0; typedef typename internal::IntTraits::MainType UnsignedType; UnsignedType abs_value = static_cast(value); @@ -2735,7 +2733,7 @@ void BasicWriter::write_int(T value, Spec spec) { template template -void BasicWriter::write_double(T value, const FormatSpec &spec) { +void basic_writer::write_double(T value, const FormatSpec &spec) { // Check type. char type = spec.type(); bool upper = false; @@ -2923,13 +2921,13 @@ void BasicWriter::write_double(T value, const FormatSpec &spec) { \endrst */ template > -class BasicMemoryWriter : public BasicWriter { +class BasicMemoryWriter : public basic_writer { private: internal::MemoryBuffer buffer_; public: explicit BasicMemoryWriter(const Allocator& alloc = Allocator()) - : BasicWriter(buffer_), buffer_(alloc) {} + : basic_writer(buffer_), buffer_(alloc) {} #if FMT_USE_RVALUE_REFERENCES /** @@ -2939,7 +2937,7 @@ class BasicMemoryWriter : public BasicWriter { \endrst */ BasicMemoryWriter(BasicMemoryWriter &&other) - : BasicWriter(buffer_), buffer_(std::move(other.buffer_)) { + : basic_writer(buffer_), buffer_(std::move(other.buffer_)) { } /** @@ -2978,7 +2976,7 @@ typedef BasicMemoryWriter WMemoryWriter; \endrst */ template -class BasicArrayWriter : public BasicWriter { +class BasicArrayWriter : public basic_writer { private: internal::FixedBuffer buffer_; @@ -2990,7 +2988,7 @@ class BasicArrayWriter : public BasicWriter { \endrst */ BasicArrayWriter(Char *array, std::size_t size) - : BasicWriter(buffer_), buffer_(array, size) {} + : basic_writer(buffer_), buffer_(array, size) {} /** \rst @@ -3000,7 +2998,7 @@ class BasicArrayWriter : public BasicWriter { */ template explicit BasicArrayWriter(Char (&array)[SIZE]) - : BasicWriter(buffer_), buffer_(array, SIZE) {} + : basic_writer(buffer_), buffer_(array, SIZE) {} }; typedef BasicArrayWriter ArrayWriter; @@ -3349,11 +3347,11 @@ void check_sign(const Char *&s, const basic_format_arg &arg) { template class CustomFormatter { private: - BasicWriter &writer_; + basic_writer &writer_; Context &ctx_; public: - CustomFormatter(BasicWriter &writer, Context &ctx) + CustomFormatter(basic_writer &writer, Context &ctx) : writer_(writer), ctx_(ctx) {} bool operator()(internal::CustomValue custom) { @@ -3450,7 +3448,7 @@ inline typename basic_format_context::format_arg // Formats a single argument. template -void do_format_arg(BasicWriter &writer, basic_format_arg arg, +void do_format_arg(basic_writer &writer, basic_format_arg arg, Context &ctx) { const Char *&s = ctx.ptr(); FormatSpec spec; @@ -3576,7 +3574,7 @@ void do_format_arg(BasicWriter &writer, basic_format_arg arg, /** Formats arguments and writes the output to the writer. */ template -void vformat(BasicWriter &writer, BasicCStringRef format_str, +void vformat(basic_writer &writer, BasicCStringRef format_str, basic_format_args args) { basic_format_context ctx(format_str.c_str(), args); const Char *&s = ctx.ptr(); @@ -3601,7 +3599,7 @@ void vformat(BasicWriter &writer, BasicCStringRef format_str, } template -inline void BasicWriter::vwrite( +inline void basic_writer::vwrite( BasicCStringRef format, basic_format_args> args) { vformat>(*this, format, args); diff --git a/fmt/ostream.cc b/fmt/ostream.cc index 8b83b2d1..ebfb50d1 100644 --- a/fmt/ostream.cc +++ b/fmt/ostream.cc @@ -12,7 +12,7 @@ namespace fmt { namespace internal { -FMT_FUNC void write(std::ostream &os, Writer &w) { +FMT_FUNC void write(std::ostream &os, writer &w) { const char *data = w.data(); typedef internal::MakeUnsigned::Type UnsignedStreamSize; UnsignedStreamSize size = w.size(); diff --git a/fmt/ostream.h b/fmt/ostream.h index 74ccadf4..bae83100 100644 --- a/fmt/ostream.h +++ b/fmt/ostream.h @@ -68,7 +68,7 @@ struct ConvertToIntImpl { }; // Write the content of w to os. -void write(std::ostream &os, Writer &w); +void write(std::ostream &os, writer &w); template BasicStringRef format_value( @@ -83,7 +83,7 @@ BasicStringRef format_value( // Formats a value. template -void format_value(BasicWriter &w, const T &value, +void format_value(basic_writer &w, const T &value, basic_format_context &ctx) { internal::MemoryBuffer buffer; auto str = internal::format_value(buffer, value); diff --git a/fmt/printf.h b/fmt/printf.h index beea7c39..8a4a486a 100644 --- a/fmt/printf.h +++ b/fmt/printf.h @@ -224,7 +224,7 @@ class PrintfArgFormatter : public internal::ArgFormatterBase { specifier information for standard argument types. \endrst */ - PrintfArgFormatter(BasicWriter &writer, FormatSpec &spec) + PrintfArgFormatter(basic_writer &writer, FormatSpec &spec) : internal::ArgFormatterBase(writer, spec) {} using Base::operator(); @@ -241,10 +241,10 @@ class PrintfArgFormatter : public internal::ArgFormatterBase { /** Formats a character. */ void operator()(Char value) { const FormatSpec &fmt_spec = this->spec(); - BasicWriter &w = this->writer(); + basic_writer &w = this->writer(); if (fmt_spec.type_ && fmt_spec.type_ != 'c') w.write_int(value, fmt_spec); - typedef typename BasicWriter::CharPtr CharPtr; + typedef typename basic_writer::CharPtr CharPtr; CharPtr out = CharPtr(); if (fmt_spec.width_ > 1) { Char fill = ' '; @@ -326,7 +326,7 @@ class printf_context : : Base(format_str.c_str(), args) {} /** Formats stored arguments and writes the output to the writer. */ - FMT_API void format(BasicWriter &writer); + FMT_API void format(basic_writer &writer); }; template @@ -402,7 +402,7 @@ unsigned printf_context::parse_header( } template -void printf_context::format(BasicWriter &writer) { +void printf_context::format(basic_writer &writer) { const Char *start = this->ptr(); const Char *s = start; while (*s) { @@ -502,14 +502,14 @@ void printf_context::format(BasicWriter &writer) { // Formats a value. template -void format_value(BasicWriter &w, const T &value, +void format_value(basic_writer &w, const T &value, printf_context& ctx) { internal::MemoryBuffer buffer; w << internal::format_value(buffer, value); } template -void printf(BasicWriter &w, BasicCStringRef format, +void printf(basic_writer &w, BasicCStringRef format, basic_format_args> args) { printf_context(format, args).format(w); } diff --git a/fmt/string.h b/fmt/string.h index e7beb039..c1731c75 100644 --- a/fmt/string.h +++ b/fmt/string.h @@ -72,7 +72,7 @@ class StringBuffer : public Buffer { \endrst */ template -class BasicStringWriter : public BasicWriter { +class BasicStringWriter : public basic_writer { private: internal::StringBuffer buffer_; @@ -82,7 +82,7 @@ class BasicStringWriter : public BasicWriter { Constructs a :class:`fmt::BasicStringWriter` object. \endrst */ - BasicStringWriter() : BasicWriter(buffer_) {} + BasicStringWriter() : basic_writer(buffer_) {} /** \rst diff --git a/fmt/time.h b/fmt/time.h index ad7ab9cf..6b970bcb 100644 --- a/fmt/time.h +++ b/fmt/time.h @@ -15,7 +15,7 @@ namespace fmt { -void format_value(Writer &w, const std::tm &tm, format_context &ctx) { +void format_value(writer &w, const std::tm &tm, format_context &ctx) { const char *&s = ctx.ptr(); if (*s == ':') ++s; diff --git a/test/custom-formatter-test.cc b/test/custom-formatter-test.cc index 7601aeb5..9f90b258 100644 --- a/test/custom-formatter-test.cc +++ b/test/custom-formatter-test.cc @@ -16,7 +16,7 @@ using fmt::PrintfArgFormatter; // rounded to 0. class CustomArgFormatter : public fmt::ArgFormatter { public: - CustomArgFormatter(fmt::Writer &w, fmt::basic_format_context &ctx, + CustomArgFormatter(fmt::writer &w, fmt::basic_format_context &ctx, fmt::FormatSpec &s) : fmt::ArgFormatter(w, ctx, s) {} @@ -33,7 +33,7 @@ class CustomArgFormatter : public fmt::ArgFormatter { // rounded to 0. class CustomPrintfArgFormatter : public PrintfArgFormatter { public: - CustomPrintfArgFormatter(fmt::BasicWriter &w, fmt::FormatSpec &spec) + CustomPrintfArgFormatter(fmt::basic_writer &w, fmt::FormatSpec &spec) : PrintfArgFormatter(w, spec) {} using PrintfArgFormatter::operator(); diff --git a/test/format-test.cc b/test/format-test.cc index b8693d5e..6419771b 100644 --- a/test/format-test.cc +++ b/test/format-test.cc @@ -70,7 +70,7 @@ lconv *localeconv() { using std::size_t; -using fmt::BasicWriter; +using fmt::basic_writer; using fmt::format; using fmt::format_error; using fmt::StringRef; @@ -165,11 +165,11 @@ TEST(CStringRefTest, Ctor) { #if FMT_USE_TYPE_TRAITS TEST(WriterTest, NotCopyConstructible) { - EXPECT_FALSE(std::is_copy_constructible >::value); + EXPECT_FALSE(std::is_copy_constructible >::value); } TEST(WriterTest, NotCopyAssignable) { - EXPECT_FALSE(std::is_copy_assignable >::value); + EXPECT_FALSE(std::is_copy_assignable >::value); } #endif @@ -399,7 +399,7 @@ TEST(WriterTest, hexu) { } template -BasicWriter &operator<<(BasicWriter &f, const Date &d) { +basic_writer &operator<<(basic_writer &f, const Date &d) { return f << d.year() << '-' << d.month() << '-' << d.day(); } @@ -410,8 +410,8 @@ public: ISO8601DateFormatter(const Date &d) : date_(&d) {} template - friend BasicWriter &operator<<( - BasicWriter &w, const ISO8601DateFormatter &d) { + friend basic_writer &operator<<( + basic_writer &w, const ISO8601DateFormatter &d) { return w << pad(d.date_->year(), 4, '0') << '-' << pad(d.date_->month(), 2, '0') << '-' << pad(d.date_->day(), 2, '0'); } @@ -1355,7 +1355,7 @@ TEST(FormatterTest, FormatCStringRef) { EXPECT_EQ("test", format("{0}", CStringRef("test"))); } -void format_value(fmt::Writer &w, const Date &d, fmt::format_context &) { +void format_value(fmt::writer &w, const Date &d, fmt::format_context &) { w << d.year() << '-' << d.month() << '-' << d.day(); } @@ -1368,7 +1368,7 @@ TEST(FormatterTest, FormatCustom) { class Answer {}; template -void format_value(BasicWriter &w, Answer, fmt::format_context &) { +void format_value(basic_writer &w, Answer, fmt::format_context &) { w << "42"; } @@ -1627,7 +1627,7 @@ class MockArgFormatter : public fmt::internal::ArgFormatterBase { public: typedef fmt::internal::ArgFormatterBase Base; - MockArgFormatter(fmt::Writer &w, fmt::format_context &ctx, + MockArgFormatter(fmt::writer &w, fmt::format_context &ctx, fmt::FormatSpec &s) : fmt::internal::ArgFormatterBase(w, s) { EXPECT_CALL(*this, call(42)); diff --git a/test/ostream-test.cc b/test/ostream-test.cc index 069c8092..7e9fa282 100644 --- a/test/ostream-test.cc +++ b/test/ostream-test.cc @@ -59,7 +59,7 @@ TEST(OStreamTest, Enum) { } struct TestArgFormatter : fmt::ArgFormatter { - TestArgFormatter(fmt::Writer &w, fmt::format_context &ctx, + TestArgFormatter(fmt::writer &w, fmt::format_context &ctx, fmt::FormatSpec &s) : fmt::ArgFormatter(w, ctx, s) {} }; @@ -134,7 +134,7 @@ TEST(OStreamTest, WriteToOStreamMaxSize) { if (max_size <= fmt::internal::to_unsigned(max_streamsize)) return; - class TestWriter : public fmt::BasicWriter { + class TestWriter : public fmt::basic_writer { private: struct TestBuffer : fmt::Buffer { explicit TestBuffer(std::size_t size) { size_ = size; } @@ -142,7 +142,7 @@ TEST(OStreamTest, WriteToOStreamMaxSize) { } buffer_; public: explicit TestWriter(std::size_t size) - : fmt::BasicWriter(buffer_), buffer_(size) {} + : fmt::basic_writer(buffer_), buffer_(size) {} } w(max_size); struct MockStreamBuf : std::streambuf { diff --git a/test/util-test.cc b/test/util-test.cc index 978a8cc8..8a80f659 100644 --- a/test/util-test.cc +++ b/test/util-test.cc @@ -68,7 +68,7 @@ namespace { struct Test {}; template -void format_value(fmt::BasicWriter &w, Test, +void format_value(fmt::basic_writer &w, Test, fmt::basic_format_context &) { w << "test"; } @@ -417,7 +417,7 @@ struct CustomContext { bool called; }; -void format_value(fmt::Writer &, const Test &, CustomContext &ctx) { +void format_value(fmt::writer &, const Test &, CustomContext &ctx) { ctx.called = true; } @@ -690,7 +690,7 @@ TEST(UtilTest, UTF16ToUTF8Convert) { #endif // _WIN32 typedef void (*FormatErrorMessage)( - fmt::Writer &out, int error_code, StringRef message); + fmt::writer &out, int error_code, StringRef message); template void check_throw_error(int error_code, FormatErrorMessage format) {