summaryrefslogtreecommitdiffstats
path: root/Source/cmDepends.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-03-14 16:15:04 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-03-18 14:09:11 (GMT)
commita6d75a1ce0daec9c60ed850163f76416de35edb7 (patch)
tree4939d9f5e68a3fb93d0a25a64c6b7e3f243c50eb /Source/cmDepends.h
parent216416219ae438ec5e93a1e125298fa0b5fd64d9 (diff)
downloadCMake-a6d75a1ce0daec9c60ed850163f76416de35edb7.zip
CMake-a6d75a1ce0daec9c60ed850163f76416de35edb7.tar.gz
CMake-a6d75a1ce0daec9c60ed850163f76416de35edb7.tar.bz2
Substitute FileComparison in variable names with FileTimeCache
Diffstat (limited to 'Source/cmDepends.h')
-rw-r--r--Source/cmDepends.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmDepends.h b/Source/cmDepends.h
index bbc79be..fc6571d 100644
--- a/Source/cmDepends.h
+++ b/Source/cmDepends.h
@@ -72,7 +72,7 @@ public:
void Clear(const std::string& file);
/** Set the file comparison object */
- void SetFileComparison(cmFileTimeCache* fc) { this->FileComparison = fc; }
+ void SetFileTimeCache(cmFileTimeCache* fc) { this->FileTimeCache = fc; }
protected:
// Write dependencies for the target file to the given stream.
@@ -98,7 +98,7 @@ protected:
// Flag for verbose output.
bool Verbose = false;
- cmFileTimeCache* FileComparison = nullptr;
+ cmFileTimeCache* FileTimeCache = nullptr;
std::string Language;