diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-09 13:33:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-09 13:33:52 (GMT) |
commit | 6734d3bb88d7d0706d0053380d70d368a9380cf0 (patch) | |
tree | b2dfcbc87c6304c2dec28e48712343d1a10ba35a /Source/cmUnixMakefileGenerator.cxx | |
parent | 1de2e698103e80864019a97106fe61b8501a201c (diff) | |
download | CMake-6734d3bb88d7d0706d0053380d70d368a9380cf0.zip CMake-6734d3bb88d7d0706d0053380d70d368a9380cf0.tar.gz CMake-6734d3bb88d7d0706d0053380d70d368a9380cf0.tar.bz2 |
ENH: change set<string> to set<cmStdString> to avoid long symbols that crash ar on solaris
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 60c5cc4..f6eeedf 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -907,8 +907,8 @@ void cmUnixMakefileGenerator::OutputDependLibs(std::ostream& fout) } // Now, look at all utilities specific to this target. - const std::set<std::string>& tutils = l->second.GetUtilities(); - for(std::set<std::string>::const_iterator util = tutils.begin(); + const std::set<cmStdString>& tutils = l->second.GetUtilities(); + for(std::set<cmStdString>::const_iterator util = tutils.begin(); util != tutils.end(); ++util) { // Record that this utility was used. |