From 115da191214638299eced2564fa4bd5c6c03c63f Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 10 Nov 2009 01:27:46 -0500 Subject: account.amount and .total return simplified values --- src/value.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/value.h') diff --git a/src/value.h b/src/value.h index 94002bef..96a3078a 100644 --- a/src/value.h +++ b/src/value.h @@ -946,6 +946,8 @@ inline value_t string_value(const string& str = "") { } #define VALUE_OR_ZERO(val) ((val).is_null() ? value_t(0L) : (val)) +#define SIMPLIFIED_VALUE_OR_ZERO(val) \ + ((val).is_null() ? value_t(0L) : (val).simplified()) inline value_t mask_value(const string& str) { return value_t(mask_t(str)); -- cgit v1.2.3