Replace std::endl with '\n'

This commit is contained in:
bofdahof
2025-03-22 13:31:30 +10:00
committed by Chris Hennes
parent 1857b0128e
commit 2dbc6305d6

View File

@@ -364,7 +364,7 @@ using PyMethodDef = struct PyMethodDef;
std::stringstream _str; \
_instance.prefix(_str, _file, _line) << _msg; \
if (_instance.add_eol) \
_str << std::endl; \
_str << '\n'; \
Base::Console()._func(_notifier, _str.str().c_str()); \
if (_instance.refresh) \
Base::Console().Refresh(); \