summaryrefslogtreecommitdiffstats
path: root/Source/cmSourceGroup.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-08-22 15:58:17 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-08-22 15:58:17 (GMT)
commitddd5a7d7290390771dbe8d41ea9ef737ce4d0c62 (patch)
tree9ccc824cb9248e886ea77dc98ff254addbe8c9bf /Source/cmSourceGroup.h
parent032106c3379d26f28b3b7953165d8fc018f772af (diff)
downloadCMake-ddd5a7d7290390771dbe8d41ea9ef737ce4d0c62.zip
CMake-ddd5a7d7290390771dbe8d41ea9ef737ce4d0c62.tar.gz
CMake-ddd5a7d7290390771dbe8d41ea9ef737ce4d0c62.tar.bz2
ENH: change all maps of string to be maps of cmStdString, to reduce symbol length in object files.
Diffstat (limited to 'Source/cmSourceGroup.h')
-rw-r--r--Source/cmSourceGroup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSourceGroup.h b/Source/cmSourceGroup.h
index 86a7b19..d5627ee 100644
--- a/Source/cmSourceGroup.h
+++ b/Source/cmSourceGroup.h
@@ -74,12 +74,12 @@ public:
/**
* Map from command to its output/depends sets.
*/
- typedef std::map<std::string, CommandFiles> Commands;
+ typedef std::map<cmStdString, CommandFiles> Commands;
/**
* Map from source to command map.
*/
- typedef std::map<std::string, Commands> BuildRules;
+ typedef std::map<cmStdString, Commands> BuildRules;
bool Matches(const char* name);
void SetGroupRegex(const char* regex)