diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-09-19T16·11+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-09-19T16·11+0200 |
commit | 2d6cd8aafdc40194497af4ed924a890f6d0a92aa (patch) | |
tree | cb4fe3fc0354c18369d4a2ac190e6cd3311ac457 /src/libexpr/primops.cc | |
parent | ea525a261f3206006318e6c93e7f41d8ac823e69 (diff) |
attrNames: Don't allocate duplicates of the symbols
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index a5bac3f0b1dc..66321c76977d 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -914,13 +914,11 @@ static void prim_attrNames(EvalState & state, const Pos & pos, Value * * args, V state.mkList(v, args[0]->attrs->size()); - StringSet names; - foreach (Bindings::iterator, i, *args[0]->attrs) - names.insert(i->name); - unsigned int n = 0; - foreach (StringSet::iterator, i, names) - mkString(*(v.list.elems[n++] = state.allocValue()), *i); + for (auto & i : *args[0]->attrs) + mkString(*(v.list.elems[n++] = state.allocValue()), i.name); + + std::sort(v.list.elems, v.list.elems + n, [](Value * v1, Value * v2) { return strcmp(v1->string.s, v2->string.s) < 0; }); } |