debugwriter.h: Use std::newl instead of '\n'

This commit is contained in:
Jonas Kulla 2014-01-20 00:54:42 +01:00
parent f3572f5ba4
commit e93e1fd292
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public:
~Debug()
{
std::clog << buf.str() << "\n";
std::clog << buf.str() << std::endl;
}
private: