summaryrefslogtreecommitdiffstats
path: root/Source/cmVariableWatchCommand.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/cmVariableWatchCommand.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/cmVariableWatchCommand.cxx')
-rw-r--r--Source/cmVariableWatchCommand.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmVariableWatchCommand.cxx b/Source/cmVariableWatchCommand.cxx
index 09cef5e..6521c04 100644
--- a/Source/cmVariableWatchCommand.cxx
+++ b/Source/cmVariableWatchCommand.cxx
@@ -49,21 +49,21 @@ static void cmVariableWatchCommandVariableAccessed(
newLFF.Arguments.clear();
newLFF.Arguments.push_back(
cmListFileArgument(variable, cmListFileArgument::Quoted,
- "unknown", 9999));
+ 9999));
newLFF.Arguments.push_back(
cmListFileArgument(accessString, cmListFileArgument::Quoted,
- "unknown", 9999));
+ 9999));
newLFF.Arguments.push_back(
cmListFileArgument(newValue?newValue:"", cmListFileArgument::Quoted,
- "unknown", 9999));
+ 9999));
newLFF.Arguments.push_back(
cmListFileArgument(currentListFile, cmListFileArgument::Quoted,
- "unknown", 9999));
+ 9999));
newLFF.Arguments.push_back(
cmListFileArgument(stack, cmListFileArgument::Quoted,
- "unknown", 9999));
+ 9999));
newLFF.Name = data->Command;
- newLFF.FilePath = "Some weird path";
+ newLFF.FilePath = "unknown";
newLFF.Line = 9999;
cmExecutionStatus status;
if(!makefile->ExecuteCommand(newLFF,status))