Remove uses of std::endl, which imply a flush

This commit is contained in:
Jason Turner
2014-11-13 10:13:51 -07:00
parent 8a30581eaf
commit 63a083b47b
15 changed files with 75 additions and 79 deletions

View File

@@ -207,7 +207,7 @@ namespace chaiscript
static void println(const std::string &s)
{
std::cout << s << std::endl;
std::cout << s << '\n';
}