1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 10:47:59 +08:00

ENH: shorten the symbols a bit and remove maps of std::string for map of cmStdString

This commit is contained in:
Bill Hoffman
2004-09-29 16:07:07 -04:00
parent 64a6ad4975
commit 5bf55d1590
10 changed files with 28 additions and 28 deletions

View File

@@ -36,7 +36,7 @@ bool cmLoadCacheCommand::InitialPass(std::vector<std::string> const& args)
// and they can not be overridden.
bool excludeFiles=false;
unsigned int i;
std::set<std::string> excludes;
std::set<cmStdString> excludes;
for(i=0; i<args.size(); i++)
{
@@ -58,7 +58,7 @@ bool cmLoadCacheCommand::InitialPass(std::vector<std::string> const& args)
// If this set is empty, no internal cache entries are
// brought in.
bool includeFiles=false;
std::set<std::string> includes;
std::set<cmStdString> includes;
for(i=0; i<args.size(); i++)
{