diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-12-19 13:35:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-12-19 13:35:52 (GMT) |
commit | 12b286ea13404abcd8f138fd92a8f2ce332e5c87 (patch) | |
tree | 766c0c02a4d2f98a7ce10ee90a1ff5f20f2be156 /Source/cmVTKMakeInstantiatorCommand.cxx | |
parent | 96763a0df20302d4a9505660ceadda8b051a2b98 (diff) | |
download | CMake-12b286ea13404abcd8f138fd92a8f2ce332e5c87.zip CMake-12b286ea13404abcd8f138fd92a8f2ce332e5c87.tar.gz CMake-12b286ea13404abcd8f138fd92a8f2ce332e5c87.tar.bz2 |
change ostrstream to strstream
Diffstat (limited to 'Source/cmVTKMakeInstantiatorCommand.cxx')
-rw-r--r-- | Source/cmVTKMakeInstantiatorCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVTKMakeInstantiatorCommand.cxx b/Source/cmVTKMakeInstantiatorCommand.cxx index 79e6544..cff1f00 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); |