mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
ExprConcatStrings::show(): Print values instead of pointers
This commit is contained in:
parent
3ff6186af1
commit
c4fc9b6a8d
1 changed files with 1 additions and 1 deletions
|
@ -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