summaryrefslogtreecommitdiff
path: root/Source/cmListFileCache.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-04 15:47:24 +0200
committerStephen Kelly <steveire@gmail.com>2015-04-04 18:31:03 +0200
commit257c16495ae0653d8f3630c8d76e6496bc9edd86 (patch)
treef2b0fd95272ecbd691aa54ce8c4b64ea26f02fe4 /Source/cmListFileCache.cxx
parentfe17092c20c39761a060508fc6b1979b06e84afe (diff)
downloadcmake-257c16495ae0653d8f3630c8d76e6496bc9edd86.tar.gz
cmListFile: Remove unused member.
It is written, but not read since commit v2.4.0~575 (ENH: Since list file cache does not make much sense any more ..., 2006-02-07).
Diffstat (limited to 'Source/cmListFileCache.cxx')
-rw-r--r--Source/cmListFileCache.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmListFileCache.cxx b/Source/cmListFileCache.cxx
index 3e2634932e..ddcea9b13e 100644
--- a/Source/cmListFileCache.cxx
+++ b/Source/cmListFileCache.cxx
@@ -146,18 +146,12 @@ bool cmListFile::ParseFile(const char* filename,
}
bool parseError = false;
- this->ModifiedTime = cmSystemTools::ModifiedTime(filename);
{
cmListFileParser parser(this, mf, filename);
parseError = !parser.ParseFile();
}
- if(parseError)
- {
- this->ModifiedTime = 0;
- }
-
// do we need a cmake_policy(VERSION call?
if(topLevel)
{