cmState: Externalize logic to caller.

This commit is contained in:
Stephen Kelly 2015-10-10 14:31:06 +02:00
parent 6f02034e66
commit 95b0d761a7
2 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,6 @@ void cmState::AddCacheEntry(const std::string& key, const char* value,
{
this->CMakeInstance->GetCacheManager()->AddCacheEntry(key, value,
helpString, type);
this->CMakeInstance->UnwatchUnusedCli(key);
}
void cmState::RemoveCacheEntry(std::string const& key)

View File

@ -1644,6 +1644,7 @@ void cmake::AddCacheEntry(const std::string& key, const char* value,
this->State->AddCacheEntry(key, value,
helpString,
cmState::CacheEntryType(type));
this->UnwatchUnusedCli(key);
}
const char* cmake::GetCacheDefinition(const std::string& name) const