From 12b286ea13404abcd8f138fd92a8f2ce332e5c87 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 19 Dec 2001 08:35:52 -0500 Subject: [PATCH] change ostrstream to strstream --- Source/cmVTKMakeInstantiatorCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmVTKMakeInstantiatorCommand.cxx b/Source/cmVTKMakeInstantiatorCommand.cxx index 79e6544b9..cff1f00ad 100644 --- a/Source/cmVTKMakeInstantiatorCommand.cxx +++ b/Source/cmVTKMakeInstantiatorCommand.cxx @@ -230,7 +230,7 @@ cmVTKMakeInstantiatorCommand std::string cmVTKMakeInstantiatorCommand::GenerateCreationFileName(unsigned int block) { - std::ostrstream nameStr; + std::strstream nameStr; nameStr << m_ClassName.c_str() << block << ".cxx" << std::ends; std::string result = nameStr.str(); nameStr.rdbuf()->freeze(0);