summaryrefslogtreecommitdiffstats
path: root/Source/cmMSDotNETGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-05-09 13:33:52 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-05-09 13:33:52 (GMT)
commit6734d3bb88d7d0706d0053380d70d368a9380cf0 (patch)
treeb2dfcbc87c6304c2dec28e48712343d1a10ba35a /Source/cmMSDotNETGenerator.cxx
parent1de2e698103e80864019a97106fe61b8501a201c (diff)
downloadCMake-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/cmMSDotNETGenerator.cxx')
-rw-r--r--Source/cmMSDotNETGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMSDotNETGenerator.cxx b/Source/cmMSDotNETGenerator.cxx
index ff5e27c..5f6244e 100644
--- a/Source/cmMSDotNETGenerator.cxx
+++ b/Source/cmMSDotNETGenerator.cxx
@@ -398,7 +398,7 @@ void cmMSDotNETGenerator::WriteProjectDepends(std::ostream& fout,
}
}
- std::set<std::string>::const_iterator i, end;
+ std::set<cmStdString>::const_iterator i, end;
// write utility dependencies.
i = target.GetUtilities().begin();
end = target.GetUtilities().end();