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
+2 -2
View File
@@ -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) {