fixed compilation errors

This commit is contained in:
gabime
2017-05-21 03:48:54 +03:00
parent 095cb1f560
commit d56fa23eb9
4 changed files with 6 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ protected:
void _sink_it(const details::log_msg& msg) override
{
fwrite(msg.formatted.data(), sizeof(char), msg.formatted.size(), stdout);
flush();
_flush();
}
void _flush() override
@@ -62,7 +62,7 @@ protected:
void _sink_it(const details::log_msg& msg) override
{
fwrite(msg.formatted.data(), sizeof(char), msg.formatted.size(), stderr);
flush();
_flush();
}
void _flush() override