summaryrefslogtreecommitdiffstats
path: root/Source/cmMakeDepend.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/cmMakeDepend.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/cmMakeDepend.h')
-rw-r--r--Source/cmMakeDepend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakeDepend.h b/Source/cmMakeDepend.h
index fabb47f..27853b2 100644
--- a/Source/cmMakeDepend.h
+++ b/Source/cmMakeDepend.h
@@ -177,7 +177,7 @@ protected:
cmRegularExpression m_IncludeFileRegularExpression;
cmRegularExpression m_ComplainFileRegularExpression;
std::vector<std::string> m_IncludeDirectories;
- typedef std::map<std::string, cmDependInformation*> DependInformationMap;
+ typedef std::map<cmStdString, cmDependInformation*> DependInformationMap;
DependInformationMap m_DependInformationMap;
};