summaryrefslogtreecommitdiffstats
path: root/Source/cmDepends.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-03-13 18:10:19 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-03-18 14:09:11 (GMT)
commit216416219ae438ec5e93a1e125298fa0b5fd64d9 (patch)
treee261b3d50b62af1c826b4d4a633bee541046c96d /Source/cmDepends.h
parent31602583930b6c517c439ae8c15df26043031345 (diff)
downloadCMake-216416219ae438ec5e93a1e125298fa0b5fd64d9.zip
CMake-216416219ae438ec5e93a1e125298fa0b5fd64d9.tar.gz
CMake-216416219ae438ec5e93a1e125298fa0b5fd64d9.tar.bz2
Rename cmFileTimeComparison to cmFileTimeCache
The name `cmFileTimeCache` reflects the functionality of the class more appropriately.
Diffstat (limited to 'Source/cmDepends.h')
-rw-r--r--Source/cmDepends.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/Source/cmDepends.h b/Source/cmDepends.h
index 20c91ca..bbc79be 100644
--- a/Source/cmDepends.h
+++ b/Source/cmDepends.h
@@ -12,7 +12,7 @@
#include <string>
#include <vector>
-class cmFileTimeComparison;
+class cmFileTimeCache;
class cmLocalGenerator;
/** \class cmDepends
@@ -72,10 +72,7 @@ public:
void Clear(const std::string& file);
/** Set the file comparison object */
- void SetFileComparison(cmFileTimeComparison* fc)
- {
- this->FileComparison = fc;
- }
+ void SetFileComparison(cmFileTimeCache* fc) { this->FileComparison = fc; }
protected:
// Write dependencies for the target file to the given stream.
@@ -101,7 +98,7 @@ protected:
// Flag for verbose output.
bool Verbose = false;
- cmFileTimeComparison* FileComparison = nullptr;
+ cmFileTimeCache* FileComparison = nullptr;
std::string Language;