diff options
Diffstat (limited to 'Source/cmDepends.h')
-rw-r--r-- | Source/cmDepends.h | 4 |
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; |