Make make_format_args public

This commit is contained in:
Victor Zverovich
2016-08-27 07:57:48 -07:00
parent 0028ce57b6
commit 4ece95a754
8 changed files with 31 additions and 34 deletions
+1 -2
View File
@@ -172,8 +172,7 @@ public:
template <typename... Args>
inline void print(CStringRef format_str, const Args & ... args) {
vprint(format_str,
internal::make_format_args<BasicFormatter<char>>(args...));
vprint(format_str, make_format_args<BasicFormatter<char>>(args...));
}
};