From 93e09279bd439543f98bd59b01dd8ef4f3b26fa4 Mon Sep 17 00:00:00 2001 From: dsarrut Date: Fri, 22 Oct 2010 07:33:19 +0000 Subject: [PATCH] remove itk:ostringstream dependence --- common/clitkExceptionObject.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()]; -- 2.47.1