From 20670d79877b296a7caeabedfea800aec22ff47a Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@orfeo-toolbox.org> Date: Mon, 9 Feb 2015 17:27:34 +0100 Subject: [PATCH] COV: Fixing coverity issue in ossimPlugins (not restoring ostream format) --- .../ossim/ossimTileMapModel.cpp | 30 +++++++++++-------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/Utilities/otbossimplugins/ossim/ossimTileMapModel.cpp b/Utilities/otbossimplugins/ossim/ossimTileMapModel.cpp index 844089e756..6555d17d45 100644 --- a/Utilities/otbossimplugins/ossim/ossimTileMapModel.cpp +++ b/Utilities/otbossimplugins/ossim/ossimTileMapModel.cpp @@ -172,19 +172,23 @@ namespace ossimplugins //***************************************************************************** std::ostream& ossimTileMapModel::print(std::ostream& os) const { - os << "\nDump of ossimTileMapModel object at " - << hex << this << ":\n" - << "\nTileMapModel -- Dump of all data members: " - << "\n theImageID: " << theImageID.chars() - << "\n theImageSize: " << theImageSize - << "\n theRefImgPt: " << theRefImgPt - << "\n theRefGndPt: " << theRefGndPt - << "\n theGSD.line: " << theGSD.line - << "\n theGSD.samp: " << theGSD.samp - << "\n qDepth: " << qDepth - << endl; - - return ossimSensorModel::print(os); + std::ios::fmtflags f(os.flags()); + + os << "\nDump of ossimTileMapModel object at " + << hex << this << ":\n" + << "\nTileMapModel -- Dump of all data members: " + << "\n theImageID: " << theImageID.chars() + << "\n theImageSize: " << theImageSize + << "\n theRefImgPt: " << theRefImgPt + << "\n theRefGndPt: " << theRefGndPt + << "\n theGSD.line: " << theGSD.line + << "\n theGSD.samp: " << theGSD.samp + << "\n qDepth: " << qDepth + << endl; + + os.flags(f); + + return ossimSensorModel::print(os); } //***************************************************************************** -- GitLab