aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/primops.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r--src/libexpr/primops.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index f66b24b77..149c7ca39 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -183,8 +183,8 @@ static void prim_genericClosure(EvalState & state, Value * * args, Value & v)
list<Value> res;
set<Value, CompareValues> doneKeys; // !!! use Value *?
while (!workSet.empty()) {
- Value * e = *(workSet.begin());
- workSet.pop_front();
+ Value * e = *(workSet.begin());
+ workSet.pop_front();
state.forceAttrs(*e);
@@ -1032,7 +1032,10 @@ static void prim_div(EvalState & state, Value * * args, Value & v)
static void prim_lessThan(EvalState & state, Value * * args, Value & v)
{
- mkBool(v, state.forceInt(*args[0]) < state.forceInt(*args[1]));
+ state.forceValue(*args[0]);
+ state.forceValue(*args[1]);
+ CompareValues comp;
+ mkBool(v, comp(*args[0], *args[1]));
}