diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:08:15 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:36:59 (GMT) |
commit | e2eecae20517daa2bb292f85e161d5cebbc1f216 (patch) | |
tree | 50a14e5929938c0716b4031e84b7bde66adbbf83 /Source/cmCacheManager.h | |
parent | b5212c68def0395642fc51dcfd499557eb9481d9 (diff) | |
download | CMake-e2eecae20517daa2bb292f85e161d5cebbc1f216.zip CMake-e2eecae20517daa2bb292f85e161d5cebbc1f216.tar.gz CMake-e2eecae20517daa2bb292f85e161d5cebbc1f216.tar.bz2 |
cmState: Move ParseCacheEntry from cmCacheManager.
Diffstat (limited to 'Source/cmCacheManager.h')
-rw-r--r-- | Source/cmCacheManager.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h index 2440066..6f063eb 100644 --- a/Source/cmCacheManager.h +++ b/Source/cmCacheManager.h @@ -121,12 +121,6 @@ public: int GetSize() { return static_cast<int>(this->Cache.size()); } - ///! Break up a line like VAR:type="value" into var, type and value - static bool ParseEntry(const std::string& entry, - std::string& var, - std::string& value, - cmState::CacheEntryType& type); - ///! Get a value from the cache given a key const char* GetInitializedCacheValue(const std::string& key) const; |