From e98144ee28e8bc1bce3dd2e67b010fe199ecc7bc Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 17 Aug 2004 22:30:01 -0400 Subject: further performance tweaks --- walk.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'walk.h') 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; } -- cgit v1.2.3