diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-14 16:15:04 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-18 14:09:11 (GMT) |
commit | a6d75a1ce0daec9c60ed850163f76416de35edb7 (patch) | |
tree | 4939d9f5e68a3fb93d0a25a64c6b7e3f243c50eb /Source/cmake.h | |
parent | 216416219ae438ec5e93a1e125298fa0b5fd64d9 (diff) | |
download | CMake-a6d75a1ce0daec9c60ed850163f76416de35edb7.zip CMake-a6d75a1ce0daec9c60ed850163f76416de35edb7.tar.gz CMake-a6d75a1ce0daec9c60ed850163f76416de35edb7.tar.bz2 |
Substitute FileComparison in variable names with FileTimeCache
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index a9aaaeb..f8a2319 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -329,7 +329,7 @@ public: /** * Get the file comparison class */ - cmFileTimeCache* GetFileComparison() { return this->FileComparison; } + cmFileTimeCache* GetFileTimeCache() { return this->FileTimeCache; } // Do we want debug output during the cmake run. bool GetDebugOutput() { return this->DebugOutput; } @@ -509,7 +509,7 @@ private: std::unordered_set<std::string> HeaderFileExtensionsSet; bool ClearBuildSystem; bool DebugTryCompile; - cmFileTimeCache* FileComparison; + cmFileTimeCache* FileTimeCache; std::string GraphVizFile; InstalledFilesMap InstalledFiles; |