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/cmTarget.h | |
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/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index e7946a6..d556fbc 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -139,6 +139,6 @@ private: std::set<std::string> m_Utilities; }; -typedef std::map<std::string,cmTarget> cmTargets; +typedef std::map<cmStdString,cmTarget> cmTargets; #endif |