aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libexpr/eval.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc
index 69632eb37..26739faf6 100644
--- a/src/libexpr/eval.cc
+++ b/src/libexpr/eval.cc
@@ -41,12 +41,17 @@ std::ostream & operator << (std::ostream & str, Value & v)
case tNull:
str << "true";
break;
- case tAttrs:
+ case tAttrs: {
str << "{ ";
+ typedef std::map<string, Value *> Sorted;
+ Sorted sorted;
foreach (Bindings::iterator, i, *v.attrs)
- str << (string) i->first << " = " << i->second.value << "; ";
+ sorted[i->first] = &i->second.value;
+ foreach (Sorted::iterator, i, sorted)
+ str << i->first << " = " << *i->second << "; ";
str << "}";
break;
+ }
case tList:
str << "[ ";
for (unsigned int n = 0; n < v.list.length; ++n)