MakeArg -> make_arg

This commit is contained in:
Victor Zverovich
2016-12-27 07:55:44 -08:00
parent ee1651ce07
commit abb6996f36
6 changed files with 30 additions and 27 deletions
+1 -2
View File
@@ -75,8 +75,7 @@ void format_value(fmt::BasicWriter<Char> &w, Test,
template <typename Char, typename T>
basic_format_arg<Char> make_arg(const T &value) {
typedef fmt::internal::MakeArg< fmt::basic_format_context<Char> > MakeArg;
return MakeArg(value);
return fmt::internal::make_arg< fmt::basic_format_context<Char> >(value);
}
} // namespace