ArgFormatter -> arg_formatter
This commit is contained in:
@@ -58,9 +58,9 @@ TEST(OStreamTest, Enum) {
|
||||
EXPECT_EQ("0", fmt::format("{}", A));
|
||||
}
|
||||
|
||||
struct TestArgFormatter : fmt::ArgFormatter<char> {
|
||||
struct TestArgFormatter : fmt::arg_formatter<char> {
|
||||
TestArgFormatter(fmt::buffer &buf, fmt::context &ctx, fmt::format_specs &s)
|
||||
: fmt::ArgFormatter<char>(buf, ctx, s) {}
|
||||
: fmt::arg_formatter<char>(buf, ctx, s) {}
|
||||
};
|
||||
|
||||
TEST(OStreamTest, CustomArg) {
|
||||
|
||||
Reference in New Issue
Block a user