summaryrefslogtreecommitdiffstats
path: root/Source/cmVTKMakeInstantiatorCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-12-19 13:35:52 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-12-19 13:35:52 (GMT)
commit12b286ea13404abcd8f138fd92a8f2ce332e5c87 (patch)
tree766c0c02a4d2f98a7ce10ee90a1ff5f20f2be156 /Source/cmVTKMakeInstantiatorCommand.cxx
parent96763a0df20302d4a9505660ceadda8b051a2b98 (diff)
downloadCMake-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.cxx2
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);