diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-08-22 15:58:17 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-08-22 15:58:17 (GMT) |
commit | ddd5a7d7290390771dbe8d41ea9ef737ce4d0c62 (patch) | |
tree | 9ccc824cb9248e886ea77dc98ff254addbe8c9bf /Source/cmCableWrapTclCommand.cxx | |
parent | 032106c3379d26f28b3b7953165d8fc018f772af (diff) | |
download | CMake-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/cmCableWrapTclCommand.cxx')
-rw-r--r-- | Source/cmCableWrapTclCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCableWrapTclCommand.cxx b/Source/cmCableWrapTclCommand.cxx index b77825f..720fa07 100644 --- a/Source/cmCableWrapTclCommand.cxx +++ b/Source/cmCableWrapTclCommand.cxx @@ -119,7 +119,7 @@ void cmCableWrapTclCommand::GenerateCableFiles() const // use the tags to make easy-to-read, unique file names for each // class's wrapper. Count the number of times each tag is used. // Warn if a tag is used more than once. - std::map<std::string, unsigned int> tagCounts; + std::map<cmStdString, unsigned int> tagCounts; for(cmCableClassSet::CableClassMap::const_iterator c = m_CableClassSet->Begin(); c != m_CableClassSet->End(); ++c) { @@ -146,7 +146,7 @@ void cmCableWrapTclCommand::GenerateCableFiles() const // Write out the cable configuration files with one class per group. // Try to name the groups based on their class's tag, but use an // index to disambiguate tag repeats (mostly used for empty tags). - std::map<std::string, unsigned int> tagIndexes; + std::map<cmStdString, unsigned int> tagIndexes; for(cmCableClassSet::CableClassMap::const_iterator c = m_CableClassSet->Begin(); c != m_CableClassSet->End(); ++c) { |