diff options
Diffstat (limited to 'Source/cmWriteFileCommand.cxx')
-rw-r--r-- | Source/cmWriteFileCommand.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmWriteFileCommand.cxx b/Source/cmWriteFileCommand.cxx index ab7f957..79a8b46 100644 --- a/Source/cmWriteFileCommand.cxx +++ b/Source/cmWriteFileCommand.cxx @@ -17,15 +17,13 @@ #include "cmWriteFileCommand.h" // cmLibraryCommand -bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& argsIn) +bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& args) { - if(argsIn.size() < 2 ) + if(args.size() < 2 ) { this->SetError("called with incorrect number of arguments"); return false; } - std::vector<std::string> args; - cmSystemTools::ExpandListArguments(argsIn, args); std::string message; std::vector<std::string>::const_iterator i = args.begin(); |