mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 13:50:10 -05:00
cmState: Move CacheEntryType enum to separate namespace
Port dependent code to the change.
This commit is contained in:
@@ -140,7 +140,7 @@ void cmLoadCacheCommand::CheckLine(const char* line)
|
||||
// Check one line of the cache file.
|
||||
std::string var;
|
||||
std::string value;
|
||||
cmState::CacheEntryType type = cmState::UNINITIALIZED;
|
||||
cmStateEnums::CacheEntryType type = cmStateEnums::UNINITIALIZED;
|
||||
if (cmake::ParseCacheEntry(line, var, value, type)) {
|
||||
// Found a real entry. See if this one was requested.
|
||||
if (this->VariablesToRead.find(var) != this->VariablesToRead.end()) {
|
||||
|
||||
Reference in New Issue
Block a user