diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-04 13:12:50 +0200 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-06 11:22:41 -0400 |
commit | 238aac23514ecdae0d4edb71033e443f30e94158 (patch) | |
tree | 5cf049d75078016e4c7504689e2623e51738d99d /Source/cmListFileCache.cxx | |
parent | 329098a9a0e81e67bd760f53811cce582a3ebdcd (diff) | |
download | cmake-238aac23514ecdae0d4edb71033e443f30e94158.tar.gz |
cmListFile: Remove FilePath member from cmListFileContext.
There is no need to store the FilePath for every function, as it is
known by other means.
Diffstat (limited to 'Source/cmListFileCache.cxx')
-rw-r--r-- | Source/cmListFileCache.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmListFileCache.cxx b/Source/cmListFileCache.cxx index 006ca4c1ff..9141d8853d 100644 --- a/Source/cmListFileCache.cxx +++ b/Source/cmListFileCache.cxx @@ -251,7 +251,6 @@ bool cmListFileParser::ParseFunction(const char* name, long line) { // Inintialize a new function call. this->Function = cmListFileFunction(); - this->Function.FilePath = this->FileName; this->Function.Name = name; this->Function.Line = line; |