Browse Source

change ostrstream to strstream

Bill Hoffman 24 years ago
parent
commit
12b286ea13
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmVTKMakeInstantiatorCommand.cxx

+ 1 - 1
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);