forked from lix-project/lix
ExprConcatStrings::show(): Print values instead of pointers
This commit is contained in:
parent
3ff6186af1
commit
c4fc9b6a8d
|
@ -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 << ")";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue