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/cmake.cxx | |
parent | b5212c68def0395642fc51dcfd499557eb9481d9 (diff) | |
download | CMake-e2eecae20517daa2bb292f85e161d5cebbc1f216.zip CMake-e2eecae20517daa2bb292f85e161d5cebbc1f216.tar.gz CMake-e2eecae20517daa2bb292f85e161d5cebbc1f216.tar.bz2 |
cmState: Move ParseCacheEntry from cmCacheManager.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index b90ac69..b1c2709 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -216,7 +216,7 @@ bool cmake::SetCacheArgs(const std::vector<std::string>& args) } std::string var, value; cmState::CacheEntryType type = cmState::UNINITIALIZED; - if(cmCacheManager::ParseEntry(entry, var, value, type)) + if(cmState::ParseCacheEntry(entry, var, value, type)) { // The value is transformed if it is a filepath for example, so // we can't compare whether the value is already in the cache until @@ -1722,7 +1722,7 @@ bool cmake::ParseCacheEntry(const std::string& entry, std::string& value, cmState::CacheEntryType& type) { - return cmCacheManager::ParseEntry(entry, var, value, type); + return cmState::ParseCacheEntry(entry, var, value, type); } int cmake::LoadCache() |