1
0
Fork 0

[F] Fixed compilation error for old compilers

This commit is contained in:
seleznevae 2018-04-08 17:21:52 +03:00
parent 18506673d5
commit 0c844aa143
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public:
stream << arg;
if (stream.tellp()) {
ft_nwrite(table, 1, stream.str().c_str());
stream = std::stringstream{};
stream.str(std::string());
}
return *this;
}