Commit ad9c8302 authored by Victor Zverovich's avatar Victor Zverovich

format -> format_str to avoid confusion with function name.

parent 7a83dcd2
......@@ -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();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment