Skip to content
Snippets Groups Projects
Commit f9a2b546 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[BL/IO] Remove unused Writer::setFormat().

parent ea24cc2e
No related branches found
No related tags found
No related merge requests found
......@@ -70,11 +70,5 @@ void Writer::setPrecision(unsigned int precision)
{
_out.precision(precision);
}
void Writer::setFormat(std::ios_base::fmtflags flags)
{
_out.setf(flags);
}
} // namespace IO
} // namespace BaseLib
} // namespace IO
} // namespace BaseLib
......@@ -43,9 +43,6 @@ public:
/// @brief Sets the decimal precision.
void setPrecision(unsigned int precision);
/// @brief Sets the format (either ios::scientific or ios::fixed);
void setFormat(std::ios_base::fmtflags flags);
protected:
/// @brief Writes the object to the internal stream.
/// This method must be implemented by a subclass.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment