Micro optimize eol in formatter

This commit is contained in:
gabime 2018-10-15 16:19:12 +03:00
parent 45717147f7
commit 275167d1b0
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ public:
f->format(msg, cached_tm_, dest);
}
// write eol
details::fmt_helper::append_str(eol_, dest);
details::fmt_helper::append_c_str(eol_.c_str(), dest);
}
private: