From f9a2b546ea18ded9616d49091c71b9590fbc993b Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Wed, 27 Nov 2019 15:34:26 +0100 Subject: [PATCH] [BL/IO] Remove unused Writer::setFormat(). --- BaseLib/IO/Writer.cpp | 10 ++-------- BaseLib/IO/Writer.h | 3 --- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/BaseLib/IO/Writer.cpp b/BaseLib/IO/Writer.cpp index 82cbf086a2a..7c5c375c6e3 100644 --- a/BaseLib/IO/Writer.cpp +++ b/BaseLib/IO/Writer.cpp @@ -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 diff --git a/BaseLib/IO/Writer.h b/BaseLib/IO/Writer.h index 47f6f7e5f1f..e556863b4af 100644 --- a/BaseLib/IO/Writer.h +++ b/BaseLib/IO/Writer.h @@ -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. -- GitLab