Don't use deprecated API.

This commit is contained in:
Victor Zverovich
2014-06-28 19:53:15 -07:00
parent 421cb0ad18
commit 0914c91284
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1611,7 +1611,7 @@ template <typename Char, typename T>
void format(BasicWriter<Char> &w, const FormatSpec &spec, const T &value) {
std::basic_ostringstream<Char> os;
os << value;
w.Write(os.str(), spec);
w.write(os.str(), spec);
}
namespace internal {