From: dsarrut Date: Fri, 22 Oct 2010 07:33:19 +0000 (+0000) Subject: remove itk:ostringstream dependence X-Git-Tag: v1.2.0~329 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=93e09279bd439543f98bd59b01dd8ef4f3b26fa4;p=clitk.git remove itk:ostringstream dependence --- diff --git a/common/clitkExceptionObject.cxx b/common/clitkExceptionObject.cxx index b76edf5..cadc7b8 100644 --- a/common/clitkExceptionObject.cxx +++ b/common/clitkExceptionObject.cxx @@ -34,7 +34,7 @@ ExceptionObject(const char *file, unsigned int lineNumber, const char *desc): //-------------------------------------------------------------------- const char* clitk::ExceptionObject::what() const throw() { - ::itk::OStringStream message; + std::ostringstream message; message << "clitk::ERROR in " << m_Filename << " line " << m_LineNumber << " : " << std::endl << "\t" << m_Message; char * m = new char[message.str().length()];