From 98d48469534f7a491b8c358d513472806c858d22 Mon Sep 17 00:00:00 2001 From: Sebastian Holtermann Date: Thu, 14 Mar 2019 17:11:21 +0100 Subject: Rename cmFileTimeCache::FileTimesDiffer to cmFileTimeCache::DifferS --- Source/cmFileCopier.cxx | 2 +- Source/cmFileTimeCache.cxx | 3 +-- Source/cmFileTimeCache.h | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Source/cmFileCopier.cxx b/Source/cmFileCopier.cxx index 560d893..8913e6d 100644 --- a/Source/cmFileCopier.cxx +++ b/Source/cmFileCopier.cxx @@ -532,7 +532,7 @@ bool cmFileCopier::InstallFile(const std::string& fromFile, bool copy = true; if (!this->Always) { // If both files exist with the same time do not copy. - if (!this->FileTimes.FileTimesDiffer(fromFile, toFile)) { + if (!this->FileTimes.DifferS(fromFile, toFile)) { copy = false; } } diff --git a/Source/cmFileTimeCache.cxx b/Source/cmFileTimeCache.cxx index ff205b7..81912db 100644 --- a/Source/cmFileTimeCache.cxx +++ b/Source/cmFileTimeCache.cxx @@ -44,8 +44,7 @@ bool cmFileTimeCache::FileTimeCompare(std::string const& f1, return false; } -bool cmFileTimeCache::FileTimesDiffer(std::string const& f1, - std::string const& f2) +bool cmFileTimeCache::DifferS(std::string const& f1, std::string const& f2) { // Get the modification time for each file. cmFileTime ft1, ft2; diff --git a/Source/cmFileTimeCache.h b/Source/cmFileTimeCache.h index d284fdb..043b7aa 100644 --- a/Source/cmFileTimeCache.h +++ b/Source/cmFileTimeCache.h @@ -42,7 +42,7 @@ public: * @return true unless both files exist and have modification times less * than 1 second apart. */ - bool FileTimesDiffer(std::string const& f1, std::string const& f2); + bool DifferS(std::string const& f1, std::string const& f2); private: typedef std::unordered_map FileTimeMap; -- cgit v0.12