diff options
Diffstat (limited to 'Source/cmAddDefinitionsCommand.cxx')
-rw-r--r-- | Source/cmAddDefinitionsCommand.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmAddDefinitionsCommand.cxx b/Source/cmAddDefinitionsCommand.cxx index 4cb42dd..5067e3f 100644 --- a/Source/cmAddDefinitionsCommand.cxx +++ b/Source/cmAddDefinitionsCommand.cxx @@ -17,15 +17,13 @@ #include "cmAddDefinitionsCommand.h" // cmAddDefinitionsCommand -bool cmAddDefinitionsCommand::InitialPass(std::vector<std::string> const& argsIn) +bool cmAddDefinitionsCommand::InitialPass(std::vector<std::string> const& args) { // it is OK to have no arguments - if(argsIn.size() < 1 ) + if(args.size() < 1 ) { return true; } - std::vector<std::string> args; - cmSystemTools::ExpandListArguments(argsIn, args); for(std::vector<std::string>::const_iterator i = args.begin(); i != args.end(); ++i) |