Cosmetics: Using VariableValues instead of std::vector<...>

Making the code more readable.
This commit is contained in:
Felipe Zimmerle
2020-08-24 12:57:47 -03:00
parent d991461c43
commit de9b5b2f16
54 changed files with 123 additions and 119 deletions

View File

@@ -117,7 +117,7 @@ void AnchoredVariable::append(const std::string &a, size_t offset,
}
void AnchoredVariable::evaluate(std::vector<std::shared_ptr<const VariableValue>> *l) {
void AnchoredVariable::evaluate(VariableValues *l) {
if (m_name.empty()) {
return;
}