diff options
author | Brad King <brad.king@kitware.com> | 2010-04-26 18:20:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-04-26 18:22:51 (GMT) |
commit | 6e1b510319cb60c4820b1e0d882f4a7911aabf53 (patch) | |
tree | 01f5da1fe1e87e066989622d5583ae44b1497362 /Source/cmMakefile.h | |
parent | 36d850b87eabdcbce00f4139cbc0de58b2c99059 (diff) | |
download | CMake-6e1b510319cb60c4820b1e0d882f4a7911aabf53.zip CMake-6e1b510319cb60c4820b1e0d882f4a7911aabf53.tar.gz CMake-6e1b510319cb60c4820b1e0d882f4a7911aabf53.tar.bz2 |
Remove unused cmData and cmMakefile::DataMap
These were implementation details of the unused methods
cmMakefile::RegisterData
cmMakefile::LookupData
We simply remove the methods, members, and class cmData.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 63f81b8..4fae7ee 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -13,7 +13,6 @@ #define cmMakefile_h #include "cmCacheManager.h" -#include "cmData.h" #include "cmExecutionStatus.h" #include "cmListFileCache.h" #include "cmPolicies.h" @@ -692,10 +691,6 @@ public: std::vector<cmSourceGroup> &groups); #endif - void RegisterData(cmData*); - void RegisterData(const char*, cmData*); - cmData* LookupData(const char*) const; - /** * Execute a single CMake command. Returns true if the command * succeeded or false if it failed. @@ -916,9 +911,6 @@ private: void PushFunctionBlockerBarrier(); void PopFunctionBlockerBarrier(bool reportError = true); - typedef std::map<cmStdString, cmData*> DataMapType; - DataMapType DataMap; - typedef std::map<cmStdString, cmStdString> StringStringMap; StringStringMap MacrosMap; |