diff options
author | David Cole <david.cole@kitware.com> | 2008-06-17 18:07:15 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2008-06-17 18:07:15 (GMT) |
commit | 5cd8c61db342b8b54cb39c5d6a37255702f4e047 (patch) | |
tree | 74ee7f342fc03d50251be38de7fa1cbc186c9927 /Source/CPack | |
parent | aa53857f59578258e780eb71eb0b4165c71276c5 (diff) | |
download | CMake-5cd8c61db342b8b54cb39c5d6a37255702f4e047.zip CMake-5cd8c61db342b8b54cb39c5d6a37255702f4e047.tar.gz CMake-5cd8c61db342b8b54cb39c5d6a37255702f4e047.tar.bz2 |
COMP: Use cmOStringStream instead of std::ostringstream for the HP compiler.
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 2dca019..3ad17b1 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -578,7 +578,7 @@ CreateComponentDescription(cmCPackComponent *component) const } else if (!component->InstallationTypes.empty()) { - std::ostringstream out; + cmOStringStream out; std::vector<cmCPackInstallationType *>::iterator installTypeIter; for (installTypeIter = component->InstallationTypes.begin(); installTypeIter != component->InstallationTypes.end(); @@ -637,7 +637,7 @@ std::string cmCPackNSISGenerator::CreateSelectionDependenciesDescription } visited.insert(component); - std::ostringstream out; + cmOStringStream out; std::vector<cmCPackComponent *>::iterator dependIt; for (dependIt = component->Dependencies.begin(); dependIt != component->Dependencies.end(); @@ -668,7 +668,7 @@ std::string cmCPackNSISGenerator::CreateDeselectionDependenciesDescription } visited.insert(component); - std::ostringstream out; + cmOStringStream out; std::vector<cmCPackComponent *>::iterator dependIt; for (dependIt = component->ReverseDependencies.begin(); dependIt != component->ReverseDependencies.end(); |