format_arg -> format_value

This commit is contained in:
Victor Zverovich
2016-10-02 08:49:10 -07:00
parent 13b04044e5
commit 65a8c2c343
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -64,7 +64,7 @@ namespace {
struct Test {};
template <typename Char>
void format_arg(fmt::BasicFormatter<Char> &f, const Char *, Test) {
void format_value(fmt::BasicFormatter<Char> &f, const Char *, Test) {
f.writer() << "test";
}
@@ -581,7 +581,7 @@ struct CustomFormatter {
typedef char Char;
};
void format_arg(CustomFormatter &, const char *&s, const Test &) {
void format_value(CustomFormatter &, const char *&s, const Test &) {
s = "custom_format";
}