diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-10 01:27:46 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-10 01:28:53 -0500 |
commit | 115da191214638299eced2564fa4bd5c6c03c63f (patch) | |
tree | 92e468fd8444d6f904ba8fe9c9dc7823a672d219 /src/value.h | |
parent | 16a2a16097e356a12feb18a091fd4f19993c350e (diff) | |
download | fork-ledger-115da191214638299eced2564fa4bd5c6c03c63f.tar.gz fork-ledger-115da191214638299eced2564fa4bd5c6c03c63f.tar.bz2 fork-ledger-115da191214638299eced2564fa4bd5c6c03c63f.zip |
account.amount and .total return simplified values
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 2 |
1 files changed, 2 insertions, 0 deletions
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)); |