diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-04 22:07:04 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-06 15:58:55 (GMT) |
commit | 1fe7f24c2b62734d501427750586d8063149ea58 (patch) | |
tree | 8c4147687adf4fa7d83deb44d7bce82360639525 /Source/cmCTest.cxx | |
parent | 08c642c6ae47fd075fe1060fc0e28d8a24cc3c00 (diff) | |
download | CMake-1fe7f24c2b62734d501427750586d8063149ea58.zip CMake-1fe7f24c2b62734d501427750586d8063149ea58.tar.gz CMake-1fe7f24c2b62734d501427750586d8063149ea58.tar.bz2 |
Add API for cache loading, deleting and saving to the cmake class.
Migrate existing users of the CacheManager API to use the new
API. The CacheManager will be going away soon.
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index df61fe6..1db057b 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -2281,7 +2281,7 @@ bool cmCTest::AddVariableDefinition(const std::string &arg) std::string value; cmCacheManager::CacheEntryType type = cmCacheManager::UNINITIALIZED; - if (cmCacheManager::ParseEntry(arg, name, value, type)) + if (cmake::ParseCacheEntry(arg, name, value, type)) { this->Definitions[name] = value; return true; |