format -> format_str to avoid confusion with function name.

This commit is contained in:
Victor Zverovich 2014-07-29 06:26:44 -07:00
parent 7a83dcd23e
commit ad9c830282

View File

@ -1760,9 +1760,9 @@ inline std::string format(StringRef format_str, const ArgList &args) {
return w.str();
}
inline std::wstring format(WStringRef format, const ArgList &args) {
inline std::wstring format(WStringRef format_str, const ArgList &args) {
WWriter w;
w.write(format, args);
w.write(format_str, args);
return w.str();
}