ExprConcatStrings::show(): Print values instead of pointers

This commit is contained in:
Eelco Dolstra 2022-01-24 15:08:16 +01:00
parent 3ff6186af1
commit c4fc9b6a8d

View file

@ -191,7 +191,7 @@ void ExprConcatStrings::show(std::ostream & str) const
str << "(";
for (auto & i : *es) {
if (first) first = false; else str << " + ";
str << i.second;
str << *i.second;
}
str << ")";
}