diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-23 21:43:37 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-21 18:57:26 (GMT) |
commit | 782657db48e0d5f0d33a19ad51678d36ddfa7ad5 (patch) | |
tree | f50ec60318de38794369f9c1658c0cbecd07e58d /Source/cmCPluginAPI.cxx | |
parent | a863c59f70a7556c010990a362e4d13792670148 (diff) | |
download | CMake-782657db48e0d5f0d33a19ad51678d36ddfa7ad5.zip CMake-782657db48e0d5f0d33a19ad51678d36ddfa7ad5.tar.gz CMake-782657db48e0d5f0d33a19ad51678d36ddfa7ad5.tar.bz2 |
cmListFileArgument: Remove FilePath member.
It is now unused.
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index 0d24ed5..591a2cd 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -426,8 +426,7 @@ int CCONV cmExecuteCommand(void *arg, const char *name, { // Assume all arguments are quoted. lff.Arguments.push_back( - cmListFileArgument(args[i], cmListFileArgument::Quoted, - "[CMake-Plugin]", 0)); + cmListFileArgument(args[i], cmListFileArgument::Quoted, 0)); } cmExecutionStatus status; return mf->ExecuteCommand(lff,status); |