Skip to content

Remove redundant m_outstream->setf(std::ios::fixed)

The following call to m_outstream->unsetf(std::ios_base::floatfield) a few line further down clears the fixed bit again, and no output is sent to the output stream between these lines, so setting the fixed bit here has no effect.

Merge request reports