summaryrefslogtreecommitdiffstats
path: root/Source/cmMacroCommand.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-23 21:43:37 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-21 18:57:26 (GMT)
commit782657db48e0d5f0d33a19ad51678d36ddfa7ad5 (patch)
treef50ec60318de38794369f9c1658c0cbecd07e58d /Source/cmMacroCommand.cxx
parenta863c59f70a7556c010990a362e4d13792670148 (diff)
downloadCMake-782657db48e0d5f0d33a19ad51678d36ddfa7ad5.zip
CMake-782657db48e0d5f0d33a19ad51678d36ddfa7ad5.tar.gz
CMake-782657db48e0d5f0d33a19ad51678d36ddfa7ad5.tar.bz2
cmListFileArgument: Remove FilePath member.
It is now unused.
Diffstat (limited to 'Source/cmMacroCommand.cxx')
-rw-r--r--Source/cmMacroCommand.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmMacroCommand.cxx b/Source/cmMacroCommand.cxx
index c3e67d7..0b945b2 100644
--- a/Source/cmMacroCommand.cxx
+++ b/Source/cmMacroCommand.cxx
@@ -139,10 +139,6 @@ bool cmMacroHelperCommand::InvokeInitialPass
this->Functions[c].Arguments.begin();
k != this->Functions[c].Arguments.end(); ++k)
{
- // Set the FilePath on the arguments to match the function since it is
- // not stored and the original values may be freed
- k->FilePath = this->FilePath.c_str();
-
cmListFileArgument arg;
arg.Value = k->Value;
if(k->Delim != cmListFileArgument::Bracket)
@@ -173,7 +169,6 @@ bool cmMacroHelperCommand::InvokeInitialPass
}
}
arg.Delim = k->Delim;
- arg.FilePath = k->FilePath;
arg.Line = k->Line;
newLFF.Arguments.push_back(arg);
}