Replace operator<< with write function

This commit is contained in:
Victor Zverovich
2017-01-22 07:40:21 -08:00
parent b77c8190ca
commit ec15ef7b7b
11 changed files with 105 additions and 89 deletions

View File

@@ -123,7 +123,7 @@ TEST(OStreamTest, Print) {
TEST(OStreamTest, WriteToOStream) {
std::ostringstream os;
fmt::MemoryWriter w;
w << "foo";
w.write("foo");
fmt::internal::write(os, w);
EXPECT_EQ("foo", os.str());
}