summaryrefslogtreecommitdiff
path: root/walk.h
diff options
context:
space:
mode:
Diffstat (limited to 'walk.h')
-rw-r--r--walk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/walk.h b/walk.h
index 07e592ce..232eea35 100644
--- a/walk.h
+++ b/walk.h
@@ -44,9 +44,9 @@ struct compare_items {
bool operator()(const T * left, const T * right) const {
assert(left);
assert(right);
- balance_t left_result;
+ value_t left_result;
sort_order->compute(left_result, details_t(left));
- balance_t right_result;
+ value_t right_result;
sort_order->compute(right_result, details_t(right));
return left_result < right_result;
}