more accurate dummy variable name

This commit is contained in:
Jacob Gissinger
2020-06-26 22:15:31 -06:00
parent e7f147a27b
commit 62a7cd0693

View File

@ -551,9 +551,9 @@ void Group::assign(int narg, char **arg)
convenience function to allow assigning to groups from a single string
------------------------------------------------------------------------- */
void Group::assign(const std::string &fixcmd)
void Group::assign(const std::string &groupcmd)
{
std::vector<std::string> args = utils::split_words(fixcmd);
std::vector<std::string> args = utils::split_words(groupcmd);
char **newarg = new char*[args.size()];
int i=0;
for (const auto &arg : args) {