Code cosmetics

This commit is contained in:
Felipe Zimmerle
2015-11-18 12:59:08 -03:00
parent 3c45a57130
commit de79848285
11 changed files with 37 additions and 32 deletions

View File

@@ -96,8 +96,7 @@ void Variables::resolveMultiMatches(const std::string& var,
if (x.first.compare(0, keySize, var) != 0) {
continue;
}
const transaction::Variable *v = new transaction::Variable(x.first, x.second);
l->insert(l->begin(), v);
l->insert(l->begin(), new transaction::Variable(x.first, x.second));
}
}