change ostrstream to strstream

This commit is contained in:
Bill Hoffman 2001-12-19 08:35:52 -05:00
parent 96763a0df2
commit 12b286ea13

View File

@ -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);